-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
52 lines (52 loc) · 1.11 KB
/
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
45
46
47
48
49
50
51
52
{
"action": {
"default_popup": "popup/popup.html",
"default_title": "Click Me!",
"default_icon": {
"16": "images/icon_16.png",
"32": "images/icon_32.png"
}
},
"author": "my-name",
"background": {
"scripts": ["background/background.js"],
"service_worker": "background/background.js",
"type": "module"
},
"browser_specific_settings": {
"gecko": {
"id": "addon@example.com"
}
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content/content.js"],
"css": ["content/contentStyling.css"]
}
],
"description": "Basic Boilerplate for Web Extensions",
"icons": {
"16": "images/icon_16.png",
"32": "images/icon_32.png",
"48": "images/icon_48.png",
"128": "images/icon_128.png"
},
"manifest_version": 3,
"name": "Web Extension Boilerplate",
"offline_enabled": true,
"options_ui": {
"page": "options/options.html",
"open_in_tab": true
},
"permissions": ["storage"],
"short_name": "Web Extension",
"version": "1.0.0",
"web_accessible_resources": [
{
"resources": ["randomData.json"],
"matches": ["<all_urls>"]
}
],
"host_permissions": ["<all_urls>"]
}