forked from brookhong/Surfingkeys
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
87 lines (87 loc) · 2.28 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
85
86
87
{
"manifest_version": 2,
"name": "Surfingkeys",
"short_name": "Map your keys for web surfing",
"version": "0.9.26",
"description": "Expand your browser with javascript and keyboard.",
"icons": {
"16": "icons/16.png",
"48": "icons/48.png",
"128": "icons/128.png"
},
"commands": {
"restartext": {
"description": "Restart this extenstion."
},
"previousTab": {
"description": "Go to the previous tab."
},
"nextTab": {
"description": "Go to the next tab."
},
"closeTab": {
"description": "Close the current tab."
},
"proxyThis": {
"description": "Toggle current site in autoproxy_hosts."
}
},
"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",
"clipboardRead",
"clipboardWrite"
],
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"match_about_blank": true,
"js": [
"content_scripts/common_content.min.js",
"content_scripts/front.js",
"content_scripts/content_scripts.js",
"content_scripts/top.js",
"pages/default.js"
],
"css": [
"content_scripts/content_scripts.css"
],
"run_at": "document_start",
"all_frames": true
}
],
"web_accessible_resources": [
"pages/default.js",
"pages/emoji.tsv",
"pages/l10n.json",
"pages/frontend.html",
"pages/pdf_viewer.html",
"pages/shadow.css",
"pages/default.css"
],
"content_security_policy": "script-src 'self' https://www.google-analytics.com; object-src 'self'"
}