-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
57 lines (56 loc) · 1.31 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
{
"manifest_version": 2,
"name": "Word Fox Pro",
"description": "Awesome tool to research and suggest keywrods",
"version": "4.0.7",
"icons": {
"16": "assets/images/16.png",
"128": "assets/images/128.png",
"256": "assets/images/256.png"
},
"short_name": "WordFox",
"browser_action": {
"default_icon": "assets/images/16.png",
"title":"Word Fox Pro",
"default_popup": "assets/pages/popup.html"
},
"background": {
"scripts": [
"assets/js/jquery-3.2.1.min.js",
"assets/js/common.js",
"assets/js/background.js"
]
},
"content_scripts": [
{
"all_frames": true,
"run_at": "document_end",
"matches": [
"*://*.pinterest.com/*"
],
"js": [
"assets/js/jquery-3.2.1.min.js",
"assets/js/content.js"
]
}
],
"permissions": [
"tabs",
"storage",
"contextMenus",
"https://ajax.googleapis.com/",
"*://*.google.com/",
"*://*.pinterest.com/*",
"https://suggestqueries.google.com/",
"https://clients1.google.com/",
"http://completion.amazon.com/",
"http://completion.amazon.co.uk/",
"http://completion.amazon.co.jp/",
"http://completion.amazon.cn/",
"http://www.dictionaryapi.com/",
"http://www.cafepress.com/"
],
"web_accessible_resources": [
"assets/images/*"
]
}