forked from GaurangTandon/ProKeys
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
54 lines (54 loc) · 1.37 KB
/
manifest.json
File metadata and controls
54 lines (54 loc) · 1.37 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
{
"manifest_version": 2,
"name": "ProKeys",
"description": "Save time and effort in emails, etc. with ProKeys! Define snippets, do math in browser, auto complete braces, and much more.",
"version": "3.6.2",
"author": "Aquila Softworks",
"browser_action": {
"default_icon": "imgs/r16.png"
},
"background": {
"scripts": [
"js/background.js"
],
"persistent": false
},
"content_scripts": [
{
"js": [
"js/detector.js"
],
"css": [
"css/blockSiteModal.css"
],
"matches": [
"<all_urls>"
],
"run_at": "document_start",
"all_frames": true
}
],
"permissions": [
"tabs",
"storage",
"notifications",
"<all_urls>",
"contextMenus",
"clipboardRead"
],
"omnibox": {
"keyword": "pk"
},
"icons": {
"16": "imgs/r16.png",
"48": "imgs/r48.png",
"128": "imgs/r128.png"
},
"options_page": "html/options.html",
"options_ui": {
"page": "html/options.html",
"open_in_tab": true
},
"offline_enabled": true,
"content_security_policy": "default-src 'none'; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-eval'; frame-src 'self'"
}