-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
56 lines (56 loc) · 1.17 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
{
"manifest_version": 3,
"name": "Read on reMarkable (unofficial)",
"version": "0.2",
"description": "Unofficial Firefox extension letting you read web articles on your reMarkable with a click.",
"icons": {
"16": "icons/16.png",
"48": "icons/48.png",
"128": "icons/128.png",
"256": "icons/256.png"
},
"host_permissions": [
"https://internal.cloud.remarkable.com/*",
"https://webapp-prod.cloud.remarkable.engineering/*",
"<all_urls>"
],
"action": {
"default_icon": {
"16": "icons/16.png",
"48": "icons/48.png",
"128": "icons/128.png",
"256": "icons/256.png"
},
"default_title": "Send site to reMarkable",
"browser_style": true
},
"permissions": [
"activeTab",
"scripting",
"storage"
],
"background": {
"scripts": [
"background.js"
]
},
"options_ui": {
"page": "options.html",
"browser_style": true
},
"web_accessible_resources": [
{
"matches": [
"<all_urls>"
],
"resources": [
"build/bundle.js"
]
}
],
"browser_specific_settings": {
"gecko": {
"id": "[email protected]"
}
}
}