-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
42 lines (42 loc) · 972 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
{
"manifest_version": 3,
"name": "__MSG_appName__",
"description": "__MSG_appDesc__",
"default_locale": "en",
"version": "1.2.1",
"version_name": "1.2.1",
"permissions": [],
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": ["content-script.js"],
"run_at": "document_start"
}
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images/BDB-ICON16.png",
"32": "images/BDB-ICON32.png",
"48": "images/BDB-ICON48.png",
"128": "images/BDB-ICON128.png"
}
},
"web_accessible_resources": [
{
"resources": [ "block-script.js" ],
"matches": [ "https://*/*", "http://*/*" ]
}
],
"icons": {
"16": "images/BDB-ICON16.png",
"32": "images/BDB-ICON32.png",
"48": "images/BDB-ICON48.png",
"128": "images/BDB-ICON128.png",
"256": "images/BDB-ICON256.png",
"512": "images/BDB-ICON512.png"
}
}