-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
41 lines (41 loc) · 1.13 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
{
"name": "Game Saver",
"version": "1.0.0",
"description": "Helps save game content from websites to preserve them for future generations",
"manifest_version": 2,
"minimum_chrome_version": "10.0",
"devtools_page": "/devtools/bootstrap.html",
"permissions": [
"http://*/",
"https://*/",
"webRequest",
"webNavigation",
"activeTab",
"tabs",
"storage",
"unlimitedStorage",
"clipboardWrite"
],
"browser_action": {
"default_title": "Game Saver",
"default_popup": "pages/popup.html",
"default_icon": {
"128": "images/icon_grey.png"
}
},
"background": {
"scripts": [
"background/hash.js",
"background/queue.js",
"background/listener.js",
"background/extTabState.js",
"background/extEventMgr.js",
"background/gameSaver.js",
"background/gameSaverImpl.js"],
"persistent": true
},
"web_accessible_resources": [
"js/pages/*",
"js/library/*"
]
}