-
Notifications
You must be signed in to change notification settings - Fork 29
/
manifest.json
49 lines (49 loc) · 1.46 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
{
"manifest_version": 3,
"name": "SheetKeys",
"version": "0.5",
"description": "SheetKeys adds powerful keyboard shortcuts to Google Sheets, in the spirit of the Vim text editor.",
"permissions": [
"storage"
],
"icons": {
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"background": {
"service_worker": "background_script.js"
},
// Uncommenting this will make this page accessible by navigating to chrome://extensions and clicking on the
// Options page for SheetKeys. This is useful while working on the help dialog UI, because it's is faster to
// load the options page without having to load frequently reload a heavy-weight Google Sheets page.
// "options_page": "harnesses/help_dialog_harness.html",
"content_scripts": [
{
"matches": [
"https://docs.google.com/spreadsheets/*",
"https://docs.google.com/a*/spreadsheets/*"
],
"js": [
"content_scripts/keyboard_utils.js",
"content_scripts/settings.js",
"content_scripts/sheet_actions.js",
"content_scripts/ui.js",
"content_scripts/commands.js",
"help_dialog.js"
],
"run_at": "document_end",
"all_frames": false
}
],
"web_accessible_resources": [
{
"resources": [
"page_scripts/page_script.js",
"fontello_svg_icon_font.css",
"help_dialog.css",
"help_dialog.html"
],
"matches": ["https://docs.google.com/*"]
}
]
}