krz/hutch
an ios client for sourcehut
clone: git clone https://gitbay.org/krz/hutch.git
v3.6.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 },
26 "content_scripts": [
27 {
28 "matches": [
29 "https://git.sr.ht/*",
30 "https://hg.sr.ht/*",
31 "https://todo.sr.ht/*",
32 "https://builds.sr.ht/*",
33 "https://lists.sr.ht/*",
34 "https://meta.sr.ht/*",
35 "https://sr.ht/*"
36 ],
37 "js": [
38 "content.js"
39 ],
40 "run_at": "document_idle"
41 }
42 ],
43 "permissions": [
44 "activeTab",
45 "scripting",
46 "storage"
47 ],
48 "host_permissions": [
49 "https://git.sr.ht/*",
50 "https://hg.sr.ht/*",
51 "https://todo.sr.ht/*",
52 "https://builds.sr.ht/*",
53 "https://lists.sr.ht/*",
54 "https://meta.sr.ht/*",
55 "https://sr.ht/*"
56 ]
57}