-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
57 lines (57 loc) · 1.33 KB
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name" : "Evernote Quick Search",
"version" : "1.0",
"description" : "Evernote Quick Search",
"manifest_version": 2,
"icons": {
"16": "images/evernote.png",
"128": "images/evernote.png"
},
"background": {
"scripts": [
"js/jsOAuth-1.3.6.min.js",
"js/evernote/evernote-sdk-minified.js",
"js/pinyin_dict_notone.js",
"js/pinyinUtil.js",
"js/utils.js",
"js/config.js",
"js/controller.js",
"js/search.js",
"eventPage.js"
]
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": [
"js/jquery-3.2.1.min.js",
"js/content_scripts/eomnibarOut.js"
],
"run_at":"document_idle",
"match_about_blank": true
}
],
"browser_action": {
"default_icon": {
"19": "images/evernote.png",
"38": "images/evernote.png"
},
"default_title": "Evernote Quick Search"
},
"web_accessible_resources": [
"css/*",
"eomnibar.html",
"evernote_qs.css",
"eomnibar.css",
"gotOAuth.html"
],
"permissions": [
"tabs",
"storage",
"geolocation",
"https://sandbox.evernote.com/",
"https://app.yinxiang.com/*",
"*://*.evernote.com/*",
"https://app.yinxiang.com/shard/s23/notestore"
]
}