manifest.json
865 Bytes
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
{
"name": "draw.io for Notion",
"version": "1.0.9",
"description": "Insert draw.io diagrams in Notion pages and edit them",
"permissions": [
"storage",
"declarativeContent",
"https://*.notion.so/*"
],
"background": {
"scripts": ["background.js"],
"persistent": false
},
"content_scripts": [
{
"matches": ["https://*.notion.so/*"],
"all_frames": true,
"run_at": "document_end",
"js": ["contentScript.js"]
}
],
"page_action": {
"default_icon": {
"16": "images/logo16.png",
"32": "images/logo32.png",
"48": "images/logo48.png",
"128": "images/logo128.png"
},
"default_popup": "popup.html"
},
"icons": {
"16": "images/logo16.png",
"32": "images/logo32.png",
"48": "images/logo48.png",
"128": "images/logo128.png"
},
"manifest_version": 2
}