-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
65 lines (65 loc) · 1.58 KB
/
manifest.json
File metadata and controls
65 lines (65 loc) · 1.58 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
63
64
65
{
// Required
"manifest_version": 2,
"name": "Pointer",
"version": "0.1",
// Recommended
"default_locale": "en",
"description": "Chrome extension for the sake of chrome extension and nothing more.",
"icons": {
"16": "images/icon_16.png",
"32": "images/icon_32.png",
"48": "images/icon_48.png",
"128": "images/icon_128.png"
},
//
"permissions": [
"declarativeContent",
"activeTab",
"contextMenus",
"storage"
],
"content_scripts": [
{
"matches": [
"*://*/*"
],
"css": [
"content/content.css"
],
"js": [
"content/content.js"
]
}
],
"browser_action": {
"default_title": "Pointer",
"default_popup": "popup/popup.html"
},
"background": {
"service_worker": "background.js"
},
"commands": {
"trigger_pointer": {
"suggested_key": {
"default": "Ctrl+Shift+V"
},
"description": "Triggers pointer creation"
},
"_execute_browser_action": {
"suggested_key": {
"windows": "Ctrl+Shift+V",
"chromeos": "Ctrl+Shift+V",
"linux": "Ctrl+Shift+V"
}
},
"_execute_page_action": {
"suggested_key": {
"default": "Ctrl+Shift+V",
"windows": "Ctrl+Shift+V"
}
}
}
// },
// "options_page": "options/options.html"
}