forked from zluca/Sidebar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
62 lines (61 loc) · 1.33 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
{
"manifest_version" : 2,
"name" : "__MSG_extName__",
"version" : "0.4.9",
"description" : "__MSG_extDescription__",
"author" : "zluka",
"developer" : {
"name" : "zluka",
"url" : "https://github.com/zluca/Sidebar"
},
"homepage_url" : "https://github.com/zluca/",
"default_locale" : "en",
"icons": {
"32": "icons/sidebar-icon-32.png",
"64": "icons/sidebar-icon-64.png"
},
"permissions": [
"<all_urls>",
"alarms",
"bookmarks",
"downloads",
"downloads.open",
"history",
"notifications",
"storage",
"tabs",
"topSites",
"unlimitedStorage",
"webRequest"
],
"content_scripts": [
{
"run_at" : "document_start",
"matches" : ["<all_urls>"],
"js" : ["content.js"],
"css" : ["content.css"]
}
],
"web_accessible_resources": [
"sidebar.html",
"dialog.html"
],
"sidebar_action": {
"default_icon" : "icons/sidebar-icon-64.png",
"default_title" : "Sidebar+",
"default_panel" : "sidebar.html#leftBar-native"
},
"background": {
"scripts": ["background.js"]
},
"browser_action": {
"default_icon" : "icons/sidebar-icon-64.png",
"default_title" : "__MSG_extTitle__",
"default_popup" : "popup.html",
"browser_style" : true
},
"options_ui": {
"page" : "options.html#services",
"browser_style" : true
}
}