forked from Lartsch/FediAct
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
45 lines (45 loc) · 918 Bytes
/
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
{
"name": "FediAct",
"version": "0.9.8.7",
"description": "Simplifies interactions on other Mastodon instances than your own. Visit https://github.com/lartsch/FediAct for more.",
"manifest_version": 3,
"content_scripts": [
{
"matches": [
"*://*/*"
],
"js": [
"src/lib/jquery-3.6.1.min.js",
"src/inject.js"
],
"css": [
"src/content_styles.css"
],
"run_at": "document_start"
}
],
"background": {
"service_worker": "src/background.js"
},
"permissions": [
"storage",
"alarms",
"tabs",
"identity"
],
"host_permissions": [
"https://*/*",
"http://*/*"
],
"options_ui": {
"page": "src/popup.html"
},
"action": {
"default_popup": "src/popup.html",
"default_icon": "src/icon/48.png",
"default_title": "FediAct settings"
},
"icons": {
"48": "src/icon/48.png"
}
}