krz/hutch
an ios client for sourcehut
clone: git clone https://gitbay.org/krz/hutch.git
v3.9.0: HutchSafariExtension/Resources/manifest.json · raw
1{
2 "manifest_version": 3,
3 "name": "Open in Hutch",
4 "version": "1.0.0",
5 "description": "Open supported SourceHut pages in Hutch.",
6 "icons": {
7 "16": "icon-16.png",
8 "32": "icon-32.png",
9 "48": "icon-48.png",
10 "128": "icon-128.png"
11 },
12 "action": {
13 "default_title": "Open in Hutch",
14 "default_icon": {
15 "16": "icon-16.png",
16 "32": "icon-32.png",
17 "48": "icon-48.png",
18 "128": "icon-128.png"
19 }
20 },
21 "background": {
22 "scripts": [
23 "background.js"
24 ],
25 "persistent": false
26 },
27 "content_scripts": [
28 {
29 "matches": [
30 "https://git.sr.ht/*",
31 "https://hg.sr.ht/*",
32 "https://todo.sr.ht/*",
33 "https://builds.sr.ht/*",
34 "https://lists.sr.ht/*",
35 "https://meta.sr.ht/*",
36 "https://sr.ht/*"
37 ],
38 "js": [
39 "content.js"
40 ],
41 "run_at": "document_idle"
42 }
43 ],
44 "permissions": [
45 "activeTab",
46 "scripting",
47 "storage"
48 ],
49 "host_permissions": [
50 "https://git.sr.ht/*",
51 "https://hg.sr.ht/*",
52 "https://todo.sr.ht/*",
53 "https://builds.sr.ht/*",
54 "https://lists.sr.ht/*",
55 "https://meta.sr.ht/*",
56 "https://sr.ht/*"
57 ]
58}