-
Notifications
You must be signed in to change notification settings - Fork 3
/
manifest.json
48 lines (48 loc) · 1.03 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
{
"manifest_version": 3,
"name": "Looper",
"description": "__MSG_description__",
"version": "2.0",
"version_name": "2.0-alpha",
"default_locale": "en",
"icons": {
"16": "icons/16.png",
"32": "icons/32.png",
"48": "icons/48.png",
"128": "icons/128.png"
},
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "ui/popup.html"
},
"options_page": "ui/options.html",
"content_scripts": [{
"all_frames": true,
"css": [
"extension-styles.css"
],
"js": [
"ui/satus.js",
"extension-core.js",
"extension-features.js"
],
"matches": [
"<all_urls>"
],
"run_at": "document_start"
}],
"offline_enabled": true,
"optional_permissions": [
"downloads"
],
"permissions": [
"tabs",
"activeTab",
"storage"
],
"host_permissions": [
"<all_urls>"
]
}