forked from brookhong/Surfingkeys
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
84 lines (84 loc) · 2.29 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"manifest_version": 2,
"name": "Surfingkeys",
"short_name": "Map your keys for web surfing",
"version": "0.5.6",
"description": "Expand your browser with javascript and keyboard.",
"icons": {
"128": "icons/128.png",
"48": "icons/48.png",
"16": "icons/16.png"
},
"commands": {
"restartext": {
"description": "Restart this extenstion."
}
},
"browser_action": {
"default_icon": {
"16": "icons/16.png",
"48": "icons/48.png"
},
"default_title": "Surfingkeys",
"default_popup": "pages/popup.html"
},
"author": "brook hong",
"permissions": [
"webRequest",
"proxy",
"<all_urls>",
"tabs",
"history",
"bookmarks",
"storage",
"sessions",
"downloads",
"topSites",
"downloads.shelf",
"clipboardRead",
"clipboardWrite"
],
"background": {
"persistant": false,
"scripts": [
"background.js"
]
},
"content_scripts": [{
"matches": ["<all_urls>"],
"match_about_blank": true,
"js": [
// build:common_content
"libs/trie.js",
"libs/jquery.js",
"content_scripts/utils.js",
"content_scripts/debug_utils.js",
"content_scripts/runtime.js",
"content_scripts/normal.js",
"content_scripts/visual.js",
"content_scripts/hints.js",
"content_scripts/events.js",
// endbuild
"content_scripts/content_scripts.js",
"pages/default.js"
],
"css": ["content_scripts/content_scripts.css"],
"run_at": "document_start",
"all_frames": true
}, {
"matches": ["<all_urls>"],
"match_about_blank": true,
"js": [
"content_scripts/top.js"
],
"run_at": "document_start",
"all_frames": false
}],
"web_accessible_resources": [
"pages/frontend.html",
"pages/shadow.css",
"pages/default.css"
],
"content_security_policy": "script-src 'unsafe-eval' 'sha256-lDGRdKgKO0PWPM8gzds75c6s6+XVZP1t+dfFrPEbXyk='; object-src 'self';",
"options_page": "pages/options.html"
}