-
Notifications
You must be signed in to change notification settings - Fork 10
/
manifest.json
50 lines (50 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
50
{
"name": "UbiChr - Ubiquity for Chrome",
"short_name": "UbiChr",
"homepage_url": "https://github.com/rostok/ubichr",
"author": "rostok",
"version": "0.1.0.61",
"description": "Revived Ubiquity for Chrome",
"content_security_policy": "script-src 'self' 'unsafe-eval' https://maps.googleapis.com https://cdnjs.cloudflare.com https://unpkg.com https://cdnjs.com; object-src 'self'",
"manifest_version": 2,
"background": {
"scripts": ["lib/jquery-3.6.0.min.js", "utils.js", "cmdutils.js", "commands.js", "background.js"],
"persistent":true
},
"browser_action": {
"default_title": "UbiChr",
"default_popup": "popup.html",
"default_icon": "res/icon-128.png"
},
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"chromeos": "Ctrl+Space",
"linux": "Ctrl+Space",
"mac": "Command+Space",
"windows": "Ctrl+Space"
}
}
},
"content_scripts": [{
"matches": ["<all_urls>"],
"js": ["selection.js"]
}],
"icons": { "128" : "res/icon-128.png" },
"permissions": [
"http://*/",
"https://*/",
"activeTab",
"tabs",
"clipboardRead",
"clipboardWrite",
"notifications",
"storage",
"alarms",
"cookies"
]
}