-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
49 lines (49 loc) · 1.29 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
{
"name": "Quartize",
"description": "Reveal Observable Notebooks As Quarto QMD {ojs} Blocks",
"version": "1.2.2",
"author": "boB Rudis (@hrbrmstr)",
"homepage_url": "https://github.com/hrbrmstr/reveal-qmd",
"manifest_version": 3,
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": ["https://observablehq.com/@*"],
"css": [
],
"js": [
"FileSaver.js",
"jszip.js"
]
}
],
"permissions": [
"activeTab",
"scripting",
"downloads"
],
"host_permissions": [
"https://observablehq.com/@*"
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "/images/quarto16.png",
"32": "/images/quarto32.png",
"48": "/images/quarto48.png",
"128": "/images/quarto128.png"
}
},
"icons": {
"16": "/images/quarto16.png",
"32": "/images/quarto32.png",
"48": "/images/quarto48.png",
"128": "/images/quarto128.png"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'",
"sandbox": "sandbox allow-scripts; script-src 'self' 'https://apis.google.com/' 'https://www.gstatic.com/' 'https://*.firebaseio.com' 'https://www.googleapis.com' 'https://ajax.googleapis.com'; object-src 'self'"
}
}