forked from xifangczy/cat-catch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.firefox.json
69 lines (69 loc) · 1.45 KB
/
manifest.firefox.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
{
"background": {
"scripts": ["js/firefox.js", "js/background.js"]
},
"browser_action": {
"default_icon": "img/icon.png",
"default_title": "还没闻到味儿~",
"default_popup": "popup.html"
},
"description": "网页媒体嗅探工具",
"icons": {
"64": "img/icon.png",
"128": "img/icon128.png"
},
"manifest_version": 2,
"name": "猫抓",
"homepage_url": "https://github.com/xifangczy/cat-catch",
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"permissions": [
"tabs",
"webRequest",
"webRequestBlocking",
"downloads",
"storage",
"webNavigation",
"alarms",
"scripting",
"activeTab",
"*://*/*",
"<all_urls>"
],
"commands": {
"_execute_browser_action": {},
"enable": {
"description": "暂停 / 启用"
},
"auto_down": {
"description": "自动下载"
},
"catch": {
"description": "缓存捕捉"
},
"m3u8": {
"description": "m3u8解析器"
},
"clear": {
"description": "清空当前标签数据"
}
},
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "93.0"
}
},
"content_scripts": [
{
"matches": ["https://*/*", "http://*/*"],
"js": ["js/content-script.js"],
"all_frames": true,
"run_at": "document_start"
}
],
"web_accessible_resources": ["catch-script/*"],
"version": "2.4.3"
}