-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmanifest.json
66 lines (66 loc) · 1.83 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
{
"manifest_version": 3,
"name": "__MSG_extensionName__",
"version": "1.5.2",
"default_locale": "en",
"author": "__MSG_author__",
"description": "__MSG_extensionDescription__",
"homepage_url": "https://github.com/zefr0x/video-speed-setter",
"browser_specific_settings": {
"gecko": {
"id": "video_speed_setter@zefr0x.github.io",
"strict_min_version": "109.0"
}
},
"icons": {
"16": "icons/VSS_dark.svg",
"32": "icons/VSS_dark.svg",
"48": "icons/VSS_dark.svg",
"96": "icons/VSS_dark.svg",
"128": "icons/VSS_dark.svg"
},
"permissions": ["activeTab", "scripting", "storage"],
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Alt+K"
},
"description": "__MSG_executeBrowserActionShortCut__"
},
"increase": {
"suggested_key": {
"default": "Alt+L"
},
"description": "__MSG_increaseShortCut__"
},
"decrease": {
"suggested_key": {
"default": "Alt+J"
},
"description": "__MSG_decreaseShortCut__"
}
},
"background": {
"scripts": ["background.js"]
},
"action": {
"default_icon": "icons/VSS_dark.svg",
"theme_icons": [
{
"light": "icons/VSS_light.svg",
"dark": "icons/VSS_dark.svg",
"size": 16
},
{
"light": "icons/VSS_light.svg",
"dark": "icons/VSS_dark.svg",
"size": 32
}
],
"default_title": "__MSG_extensionName__",
"default_popup": "popup/popup.html"
},
"options_ui": {
"page": "options/options.html"
}
}