-
Notifications
You must be signed in to change notification settings - Fork 1
/
firefox-manifest.json
46 lines (46 loc) · 1 KB
/
firefox-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
{
"manifest_version": 3,
"name": "ASB Auto Subs",
"description": "An extension to automatically download the subtitle file of the currently played anime intended to be used with ASB Player to add the downloaded subtitles to the video.",
"version": "0.0.9",
"background": {
"scripts": [
"dist/background.js"
]
},
"permissions": [
"activeTab",
"scripting",
"downloads",
"storage",
"webNavigation"
],
"host_permissions": [
"https://*/"
],
"action": {
"default_popup": "html/popup.html",
"default_icon": "imgs/logo.png"
},
"web_accessible_resources": [
{
"resources": [
"css/index.css"
],
"matches": [
"https://hianime.to/*",
"https://www.miruro.tv/*"
]
}
],
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "109.0"
},
"gecko_android ": {
"id": "[email protected]",
"strict_min_version": "109.0"
}
}
}