-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
46 lines (46 loc) · 896 Bytes
/
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": "Video Seeking Everywhere",
"version": "1.0.1",
"description": "Allows you to seek through any playing video on most websites using the < or > keys.",
"icons": {
"48": "icons/128.png"
},
"content_scripts": [
{
"all_frames": true,
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"browser-polyfill.min.js",
"contentscript.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"video-seeking-everywhere.js"
],
"matches": [
"http://*/*",
"https://*/*"
]
}
],
"permissions": [
"storage"
],
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"browser_specific_settings": {
"gecko": {
"id": "@video-seeking-everywhere",
"strict_min_version": "109.0"
}
}
}