-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
62 lines (58 loc) · 1.24 KB
/
manifest.json
File metadata and controls
62 lines (58 loc) · 1.24 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"manifest_version": 2,
"name": "Admin Swichter",
"description": "Quickly switch to the Joomla & Wordpress Admin with a click.",
"version": "1.0.1",
"icons": {
"128": "logo.png",
"48": "logo.png",
"16": "logo.png"
},
"browser_action": {
"default_icon": "logo.png"
},
"commands": {
"toggle-feature-foo": {
"suggested_key": {
"default": "Ctrl+Shift+Y",
"mac": "Command+Shift+Y"
},
"description": "Toggle feature foo"
},
"_execute_browser_action": {
"suggested_key": {
"windows": "Ctrl+Shift+Y",
"mac": "Command+Shift+Y",
"chromeos": "Ctrl+Shift+U",
"linux": "Ctrl+Shift+J"
}
},
"_execute_page_action": {
"suggested_key": {
"default": "Ctrl+Shift+E",
"windows": "Alt+Shift+P",
"mac": "Alt+Shift+P"
}
}
},
"background": {
"scripts": ["eventPage.js"],
"persistent": false
},
"content_scripts":[
{
"matches":[
"<all_urls>"
],
"js":["content.js"]
}
],
"permissions": [
"contextMenus",
"activeTab",
"background",
"tabs",
"notifications"
],
"options_page": "options.html"
}