-
Notifications
You must be signed in to change notification settings - Fork 13
/
manifest.json
48 lines (48 loc) · 1.39 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
{
"manifest_version": 2,
"name": "__MSG_extName__",
"version": "2017.2.13.0",
"description": "__MSG_extDescription__",
"icons": {
"16": "images/sidewise_icon_16.png",
"32": "images/sidewise_icon_32.png",
"48": "images/sidewise_icon_48.png",
"128": "images/sidewise_icon_128.png",
"256": "images/sidewise_icon_256.png"
},
"background": {
"page": "background.html"
},
"browser_action": {
"default_icon": "images/sidewise_icon_16.png",
"default_title": "Open Sidewise"
},
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*"],
"js": ["content_script.js"],
"run_at": "document_start"
}
],
"default_locale": "en",
"homepage_url": "http://www.sidewise.info",
"minimum_chrome_version": "56.0.2924.87",
"omnibox": { "keyword": "sw" },
"options_page": "options.html",
"permissions": [
"tabs",
"webNavigation",
"*://*/*",
"chrome://favicon/",
"https://ssl.google-analytics.com/ga.js",
"clipboardWrite",
"storage",
"unlimitedStorage"
],
"web_accessible_resources": [
"/sidebars/pages.html",
"/sidebars/notepad.html",
"/sidebars/external-site.html"
],
"content_security_policy": "script-src 'self' https://ssl.google-analytics.com https://apis.google.com; object-src 'self'"
}