-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
59 lines (59 loc) · 1.37 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
51
52
53
54
55
56
57
58
59
{
"name": "Blabr",
"version": "0.0.9",
"description": "Debugging tool for developers showing various information about the DOM.",
"background": {
"scripts": [
"js/blabr.js",
"js/background.js"
],
"persistent": true
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["js/blabr_page.js"],
"all_frames": false
}
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"browser_action": {
"default_icon": "icon.png",
"default_title": "Blabr - Settings",
"default_popup": "settings.html"
},
"permissions": [
"tabs",
"storage",
"background"
],
"manifest_version": 2,
"icons": {
"16": "icon.png",
"48": "icon48.png",
"128": "icon128.png"
},
"commands": {
"hidden_fields": {
"suggested_key": {
"default": "Ctrl+Shift+H"
},
"description": "Show hidden field information",
"global": false
},
"max_lengths": {
"suggested_key": {
"default": "Ctrl+Shift+V"
},
"description": "Show max length information",
"global": false
},
"toggle_validation": {
"suggested_key": {
"default": "Ctrl+Shift+U"
},
"description": "Toggle jQuery Validation on and off",
"global": false
}
}
}