-
Notifications
You must be signed in to change notification settings - Fork 18
/
manifest.json
58 lines (58 loc) · 1.24 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
53
54
55
56
57
58
{
"manifest_version": 3,
"name": "Frame By Frame",
"description": "__MSG_description__",
"version": "3.5",
"default_locale": "en",
"icons": {
"16": "assets/icons/16.png",
"32": "assets/icons/32.png",
"48": "assets/icons/48.png",
"128": "assets/icons/128.png"
},
"background": {
"service_worker": "background.js"
},
"options_page": "options-page/index.html",
"action": {
"default_popup": "options-page/index.html"
},
"content_scripts": [
{
"all_frames": true,
"css": [
"content-scripts/styles.css"
],
"js": [
"content-scripts/core.js",
"content-scripts/cursor.js",
"content-scripts/events.js",
"content-scripts/locale.js",
"content-scripts/messages.js",
"content-scripts/observer.js",
"content-scripts/storage.js",
"content-scripts/ui.js",
"content-scripts/videos.js",
"content-scripts/init.js",
"content-scripts/features/data.js",
"content-scripts/features/events.js",
"content-scripts/features/storage.js",
"content-scripts/features/ui.js"
],
"matches": [
"<all_urls>"
],
"run_at": "document_start"
}
],
"optional_permissions": [
"downloads"
],
"permissions": [
"storage"
],
"host_permissions": [
"<all_urls>"
],
"offline_enabled": true
}