-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
44 lines (38 loc) · 874 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
42
43
44
{
"manifest_version": 3,
"name": "__MSG_extName__",
"description": "__MSG_extDesc__",
"default_locale": "en",
"version": "0.8.2",
"content_scripts": [
{
"matches": ["*://news.ycombinator.com/item?id=*", "*://lobste.rs/s/*", "*://tweakers.net/*/*"],
"js": ["BoundedBikeshed.user.js"]
}
],
"permissions": ["storage"],
"options_ui": {
"page": "options/options.html"
},
"icons": {
"48": "icons/bb-48.png",
"96": "icons/bb-96.png",
"128": "icons/bb-128.png"
},
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "113.0"
},
"gecko_android": {
"strict_min_version": "113.0"
}
},
"background": {
"scripts": ["background.js"]
},
"action": {
"default_icon": "icons/bb-48.png",
"default_title": "__MSG_extToggle__"
}
}