forked from xifangczy/cat-catch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
81 lines (81 loc) · 1.55 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"background": {
"service_worker": "js/background.js"
},
"action": {
"default_icon": "img/icon.png",
"default_title": "__MSG_catCatch__",
"default_popup": "popup.html"
},
"description": "__MSG_description__",
"icons": {
"64": "img/icon.png",
"128": "img/icon128.png"
},
"manifest_version": 3,
"minimum_chrome_version": "93",
"name": "__MSG_catCatch__",
"homepage_url": "https://github.com/xifangczy/cat-catch",
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"permissions": [
"tabs",
"webRequest",
"downloads",
"storage",
"webNavigation",
"alarms",
"declarativeNetRequest",
"scripting"
],
"commands": {
"_execute_action": {},
"enable": {
"description": "__MSG_pause__ / __MSG_enable__"
},
"auto_down": {
"description": "__MSG_autoDownload__"
},
"catch": {
"description": "__MSG_cacheCapture__"
},
"m3u8": {
"description": "__MSG_m3u8Parser__"
},
"clear": {
"description": "__MSG_clear__"
}
},
"host_permissions": [
"*://*/*",
"<all_urls>"
],
"content_scripts": [
{
"matches": [
"https://*/*",
"http://*/*"
],
"js": [
"js/content-script.js"
],
"run_at": "document_start",
"all_frames": true
}
],
"web_accessible_resources": [
{
"resources": [
"catch-script/*"
],
"matches": [
"<all_urls>"
]
}
],
"default_locale": "en",
"version": "2.5.4",
"incognito": "split"
}