forked from zimocode/smartup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
46 lines (46 loc) · 1.16 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
{
"manifest_version": 2,
"minimum_chrome_version": "22",
"name": "__MSG_ext_name__",
"short_name":"smartUp",
"version": "7.2.622.1170",
"description": "__MSG_ext_des__",
"default_locale": "en",
"author":"zimo",
"icons": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"background": {
"scripts": ["js/purify.js","js/gbk.js","js/background.js"],
"persistent": true
},
"content_scripts": [
{
"js": ["js/event.js"],
"matches": ["<all_urls>"],
"run_at": "document_start",
"all_frames":true,
"match_about_blank":true
}
],
"browser_action": {
"default_icon": {
"19": "icon.png",
"38": "icon.png"
},
"default_title": "smartUp",
"default_popup": "html/popup.html"
},
"options_ui": {
"open_in_tab": true,
"page": "html/options.html"
},
"web_accessible_resources": [
"image/*",
"icon.png"
],
"permissions": ["tabs","<all_urls>","notifications","storage","contextMenus","unlimitedStorage","tts"],
"optional_permissions": ["downloads","downloads.shelf","clipboardRead","clipboardWrite","bookmarks","history","management","sessions","pageCapture","background","topSites"]
}