-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
39 lines (39 loc) · 865 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
{
"manifest_version": 2,
"name": "Wilmonium",
"version": "1.0.2",
"author": "Developer From Jokela",
"description": "Wilmonium, browser extension for improving Wilma experience in your browser",
"icons": {
"48": "icons/48.png",
"128": "icons/128.png"
},
"browser_action": {
"default_icon": {
"48": "icons/48.png",
"128": "icons/128.png"
},
"default_title": "Wilmonium",
"default_popup": "control/control.html"
},
"permissions": [
"storage"
],
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["js/loader.js"]
}
],
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "1.0.1"
}
},
"web_accessible_resources": [
"js/wilmonium.js",
"css/wilmonium-dark.css",
"css/wilmonium.css"
]
}