-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmanifest.json
41 lines (33 loc) · 982 Bytes
/
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
{
"manifest_version": 2,
"name": "bootstrap-responsiveHelper",
"description": "Show the Bootstrap grid class currently active (XS, SM, MD, LG, ..)",
"version": "1.3.0",
"homepage_url": "https://github.com/KevinBon/webextension--bootstrap-responsiveHelper",
"developer": {
"name": "Kevin BON",
"url": "https://github.com/KevinBon/webextension--bootstrap-responsiveHelper"
},
"icons": {
"32": "icons/icon.png"
},
"permissions": ["activeTab", "tabs", "storage"],
"browser_action": {
"default_area": "tabstrip",
"default_icon": "icons/icon-light.png",
"default_title": "Bootstrap - Responsible Helper"
},
"options_ui": {
"page": "options/options.html"
},
"web_accessible_resources": ["icons/icon-transparent.png"],
"background": {
"scripts": ["background/bg.responsiveHelper.js"]
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content_scripts/ct.responsiveHelper.js"]
}
]
}