-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmanifest.json
More file actions
44 lines (44 loc) · 1.3 KB
/
manifest.json
File metadata and controls
44 lines (44 loc) · 1.3 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
{
"name": "Knockout Context Hover",
"short_name": "ko-context-hover",
"description": "KnockoutJS Context Hover - Development and debugging assistant for Knockout JS. Tested on: 3.4.2, 3.1.0, 2.2.1",
"version": "1.8",
"manifest_version": 3,
"author": "Alexandros Papounidis",
"icons": {
"32": "icons/ko-context-hover-logo-32x32.png",
"64": "icons/ko-context-hover-logo-64x64.png",
"128": "icons/ko-context-hover-logo-128x128.png"
},
"permissions": ["scripting", "contextMenus"],
"host_permissions": ["https://*/*", "http://*/*"],
"content_scripts": [
{
"matches": ["<all_urls>"],
"css": ["styles/ko-context-hover-style.css"],
"js": ["scripts/knockoutjs-3.4.2.min.js", "scripts/contentscript.js"]
}
],
"browser_specific_settings": {
"gecko": {
"id": "f2987444-d788-44e9-b2d0-e4a3d6b91f35"
}
},
"background": {
"service_worker": "scripts/background.js",
"scripts": ["scripts/background.js"]
},
"web_accessible_resources": [
{
"resources": [
"markup/panel.html",
"reference-binding-handlers/*.js",
"scripts/*.js"
],
"matches": ["<all_urls>"]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
}
}