-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest.json
More file actions
55 lines (55 loc) · 1.33 KB
/
manifest.json
File metadata and controls
55 lines (55 loc) · 1.33 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
{
"manifest_version": 3,
"name": "Kneuron",
"version": "1.14.0",
"description": "Utility for Knack's Builder, by Cortex R&D Inc.",
"icons": {
"16": "Kneuron-Icon128.png",
"48": "Kneuron-Icon48.png",
"128": "Kneuron-Icon128.png"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "Kneuron-Icon128.png",
"48": "Kneuron-Icon48.png",
"128": "Kneuron-Icon128.png"
},
"default_title": "Kneuron - Cortex R&D Inc."
},
"permissions": [],
"host_permissions": [
"https://builder.knack.com/*"
],
"web_accessible_resources": [
{
"resources": [
"page-script.js",
"drag-block-page.js"
],
"matches": [
"https://builder.knack.com/*"
]
}
],
"content_scripts": [
{
"matches": [
"https://builder.knack.com/*"
],
"js": [
"drag-block-inject.js"
],
"run_at": "document_start"
},
{
"matches": [
"https://builder.knack.com/*"
],
"js": [
"Kneuron.js"
],
"run_at": "document_idle"
}
]
}