forked from chrisputnam9/chrome-google-keep-full-screen
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
47 lines (47 loc) · 1.08 KB
/
manifest.json
File metadata and controls
47 lines (47 loc) · 1.08 KB
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
{
"name": "Google Keep - Full Screen Edit",
"short_name": "Google Keep Full Screen",
"description": "Makes note editing take up the full browser window",
"homepage_url": "https://github.com/chrisputnam9/chrome-google-keep-full-screen",
"version": "1.4.1",
"icons": {
"16": "images/icon16.png",
"48": "images/icon48.png",
"128": "images/icon128.png"
},
"options_page": "src/options/index.html",
"permissions": [
"storage"
],
"host_permissions": [
"*://keep.google.com/*"
],
"background": {
"service_worker": "src/service_worker.js"
},
"commands": {
"toggle-fullscreen": {
"suggested_key": {
"default": "Ctrl+Shift+F",
"mac": "Command+Shift+F"
},
"description": "Toggle full screen editing"
}
},
"content_scripts": [
{
"matches": [
"*://keep.google.com/*"
],
"css": [
"src/content/styles.css"
],
"js": [
"src/content/script.js",
"src/shared/options_handler.js"
],
"run_at": "document_idle"
}
],
"manifest_version": 3
}