forked from gildas-lormeau/SingleFile
-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
124 lines (124 loc) · 2.94 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "SingleFile",
"author": "Gildas Lormeau",
"homepage_url": "https://github.com/gildas-lormeau/SingleFile",
"icons": {
"16": "src/ui/resources/icon_16.png",
"48": "src/ui/resources/icon_48.png",
"64": "src/ui/resources/icon_64.png",
"128": "src/ui/resources/icon_128.png"
},
"version": "1.21.39",
"description": "__MSG_extensionDescription__",
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"run_at": "document_start",
"js": [
"lib/chrome-browser-polyfill.js",
"lib/single-file-frames.js",
"lib/single-file-extension-frames.js"
],
"all_frames": true,
"match_about_blank": true
},
{
"matches": [
"<all_urls>"
],
"run_at": "document_start",
"js": [
"lib/chrome-browser-polyfill.js",
"lib/single-file-bootstrap.js",
"lib/single-file-extension-bootstrap.js",
"lib/single-file-infobar.js"
]
}
],
"background": {
"page": "src/core/bg/background.html",
"persistent": false
},
"options_page": "src/ui/pages/options.html",
"sidebar_action": {
"browser_style": true,
"default_title": "SingleFile",
"default_panel": "src/ui/pages/panel.html",
"default_icon": "src/ui/resources/icon_128.png",
"open_at_install": false
},
"options_ui": {
"browser_style": true,
"page": "src/ui/pages/options.html",
"open_in_tab": false
},
"browser_action": {
"default_icon": {
"16": "src/ui/resources/icon_16.png",
"48": "src/ui/resources/icon_48.png",
"64": "src/ui/resources/icon_64.png",
"128": "src/ui/resources/icon_128.png"
},
"default_title": "__MSG_buttonDefaultTooltip__"
},
"commands": {
"save-selected-tabs": {
"suggested_key": {
"default": "Ctrl+Shift+Y"
},
"description": "__MSG_commandSaveSelectedTabs__"
},
"save-all-tabs": {
"suggested_key": {
"default": "Ctrl+Shift+U"
},
"description": "__MSG_commandSaveAllTabs__"
}
},
"web_accessible_resources": [
"lib/single-file-hooks-frames.js",
"lib/single-file-infobar.js",
"lib/single-file-extension-editor-init.js",
"lib/single-file-extension-editor.js",
"lib/single-file-extension-editor-helper.js",
"src/lib/readability/Readability.js",
"src/lib/readability/Readability-readerable.js",
"src/ui/pages/editor-note-web.css",
"src/ui/pages/editor-mask-web.css",
"src/ui/pages/editor-frame-web.css"
],
"oauth2": {
"client_id": "207618107333-3pj2pmelhnl4sf3rpctghs9cean3q8nj.apps.googleusercontent.com",
"scopes": [
"https://www.googleapis.com/auth/drive.file"
]
},
"permissions": [
"identity",
"menus",
"contextMenus",
"downloads",
"storage",
"tabs",
"<all_urls>"
],
"optional_permissions": [
"identity",
"clipboardWrite",
"nativeMessaging",
"bookmarks",
"webRequest",
"webRequestBlocking"
],
"browser_specific_settings": {
"gecko": {
"id": "{531906d3-e22f-4a6c-a102-8057b88a1a63}"
}
},
"devtools_page": "src/core/devtools/devtools.html",
"incognito": "spanning",
"manifest_version": 2,
"default_locale": "en"
}