-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmanifest.json
More file actions
31 lines (31 loc) · 788 Bytes
/
manifest.json
File metadata and controls
31 lines (31 loc) · 788 Bytes
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
{
"manifest_version": 2,
"name": "ffreszoom",
"version": "0.4.2",
"description": "Sets the zoom level based on the screen resolution.",
"browser_action": {
"default_icon": "icons/enabled.svg",
"default_title": "ffreszoom (on)"
},
"background": {
"scripts": ["globals.js", "background.js"]
},
"permissions": ["<all_urls>", "tabs", "storage"],
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["globals.js", "resize.js"]
}
],
"options_ui": {
"page": "options.html"
},
"commands": {
"toggle-reszoom": {
"suggested_key": {
"linux": "Ctrl+Alt+Z"
},
"description": "Toggle On/Off"
}
}
}