-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifestFx.json
79 lines (79 loc) · 2 KB
/
manifestFx.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
{
"name": "__MSG_appName__",
"description": "__MSG_appDesc__",
"default_locale": "en",
"version": "1.4.2",
"manifest_version": 3,
"permissions": [
"contextMenus"
],
"host_permissions": [
"*://*.youtube.com/*"
],
"content_scripts": [
{
"matches": [
"*://*.youtube.com/*"
],
"js": [
"js/content_script.js"
],
"run_at": "document_start"
}
],
"web_accessible_resources": [
{
"matches": [
"<all_urls>"
],
"resources": [
"js/core.js",
"js/function.js",
"js/dataSet.js"
]
}
],
"icons": {
"16": "images/icon16.png",
"32": "images/icon32.png",
"48": "images/icon48.png",
"128": "images/icon128.png"
},
"browser_specific_settings": {
"gecko": {
"id": "pinaytcmnt@public.domain"
}
},
"background": {
"page": "pages/background.html"
},
"commands": {
"pinSelectedContent": {
"suggested_key": {
"default": "Alt+Shift+U"
},
"description": "__MSG_stringPinSelectedContent__"
},
"appendPinSelectedContent": {
"description": "__MSG_stringAppendPinSelectedContent__"
},
"unpinSelectedContent": {
"suggested_key": {
"default": "Alt+Shift+Y"
},
"description": "__MSG_stringUnpinSelectedContent__"
},
"resetPinnedContentPosition": {
"suggested_key": {
"default": "Alt+Shift+A"
},
"description": "__MSG_stringResetPinnedContentPosition__"
},
"togglePinnedContent": {
"suggested_key": {
"default": "Alt+Shift+W"
},
"description": "__MSG_stringTogglePinnedContent__"
}
}
}