-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
38 lines (38 loc) · 936 Bytes
/
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
{
"manifest_version": 2,
"name": "Fruit Spawn",
"version": "1.0.0",
"description": "Cover your internet in fruit. And tacos.",
"icons": {
"16": "images/icon16.png",
"19": "images/icon19.png",
"38": "images/icon38.png",
"48": "images/icon48.png",
"128": "images/icon128.png",
"160": "images/icon160.png"
},
//"content_scripts": [
// {
// "matches": ["*://*/*"],
// "js": ["script.js"],
// "run_at": "document_end"
// }
//],
"browser_action": {
"default_icon": "images/icon160.png"
},
/*"background": {
"persistent": false,
"scripts": ["background.js"],
"run_at": "document_end"
}*/
"background": {
"scripts": ["background.js"],
"persistent": true
},
"permissions": [
"https://*/*",
"http://*/*",
"activeTab"
]
}