-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebext-manifest.json
38 lines (38 loc) · 998 Bytes
/
webext-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
{
"manifest_version": 2,
"name": "simple-web-extension",
"version": "0.1.0",
"description": "This is a simple web extension for learning purpose. How to develop, test, package and publish cross-browser extensions.",
"author": "Jürgen Löhel",
"applications": {
"gecko": {
"id": "web_extension@loehel.de",
"strict_min_version": "56.0"
}
},
"icons": {
"48": "icons/icon-48.png",
"96": "icons/icon-96.png"
},
"options_ui": {
"browser_style": true,
"chrome_style": true,
"open_in_tab": false,
"page": "options/options.html"
},
"permissions": ["tabs", "storage", "devtools"],
"browser_action": {
"default_title": "Left Pad",
"default_popup": "popups/left-pad.html",
"browser_style": true
},
"background": {
"scripts": ["resources/dist/background_scripts/hackweek.js"]
},
"content_scripts": [
{
"matches": ["*://*.suse.com/*"],
"js": ["resources/dist/content_scripts/hackweek.js"]
}
]
}