-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmanifest.json
More file actions
44 lines (44 loc) · 1.14 KB
/
manifest.json
File metadata and controls
44 lines (44 loc) · 1.14 KB
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
{
"manifest_version": 2,
"name": "bbCodeWebex",
"version": "0.3.3",
"description": "Context Menus for bbCode/Html/Markdown/etc. formatting",
"default_locale": "en-US",
"icons": {
"16": "icons/bbcwbx.svg",
"32": "icons/bbcwbx.svg",
"64": "icons/bbcwbx.svg"
},
"author": "Matthew G. Saroff",
"homepage_url": "http://www.stellarparthenon.org/bbcwbx",
"permissions": [
"<all_urls>",
"notifications",
"contextMenus",
"downloads",
"menus",
"storage",
"tabs",
"alarms",
"activeTab",
"clipboardRead",
"clipboardWrite"
],
"web_accessible_resources": [
"data/*.json"
],
"background": {
"scripts": ["context_menu.js"]
},
"content_scripts": [
{
"matches": ["*://*/*"],
"js": ["libraries/dom.js", "content_script.js"],
"all_frames": true
}
],
"options_ui": {
"page": "settings/options.html",
"browser_style": false
}
}