-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
43 lines (43 loc) · 1002 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
{
"manifest_version": 2,
"name": "Local Masto Redirect",
"version": "1.1",
"description": "Adds a button that will redirect you to your local masto-instance version of this post.",
"icons": {
"64": "icons/fediverse_64.png"
},
"content_scripts": [
{
"matches": [
"*://*/@*/*",
"*://*/notes/*",
"*://*/notice/*"
],
"js": [
"inject.js"
]
}
],
"options_ui": {
"page": "options.html"
},
"background": {
"scripts": [
"background.js"
]
},
"page_action": {
"default_icon": "icons/fediverse_64.png",
"default_title": "Open in local mastodon instance!"
},
"permissions": [
"activeTab",
"storage",
"<all_urls>"
],
"browser_specific_settings": {
"gecko": {
"id": "[email protected]"
}
}
}