-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmanifest.json
More file actions
43 lines (43 loc) · 735 Bytes
/
manifest.json
File metadata and controls
43 lines (43 loc) · 735 Bytes
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
{
"manifest_version": 2,
"name": "javascript",
"description": "add javascript that will run on this domain",
"version": "0.3.1",
"icons": {
"64": "icons/64.png",
"512": "icons/512.png",
"1052": "icons/icon.png"
},
"permissions": [
"activeTab",
"storage",
"unlimitedStorage"
],
"background": {
"scripts": [
"background_script.js"
]
},
"content_scripts": [
{
"matches": [
"*://*/*"
],
"js": [
"content_script.js"
]
}
],
"browser_action": {
"default_icon": {
"64": "icons/64.png",
"512": "icons/512.png",
"1052": "icons/icon.png"
},
"default_popup": "browserAction/index.html",
"default_title": "javascript"
},
"options_ui": {
"page": "options/index.html"
}
}