FediAct/manifest.json

45 wiersze
914 B
JSON

2022-11-16 14:48:05 +00:00
{
"name": "FediAct",
"version": "0.9.8.7",
2022-12-11 16:34:37 +00:00
"description": "Simplifies interactions on other Mastodon instances than your own. Visit https://github.com/lartsch/FediAct for more.",
2022-11-16 16:07:15 +00:00
"manifest_version": 3,
2022-11-16 14:48:05 +00:00
"content_scripts": [
{
"matches": [
"*://*/*"
],
"js": [
"src/lib/jquery-3.6.1.min.js",
2022-12-19 00:21:45 +00:00
"src/inject.min.js"
],
"css": [
"src/content_styles.min.css"
],
"run_at": "document_start"
}
2022-11-16 14:48:05 +00:00
],
"background": {
2022-12-03 12:52:49 +00:00
"service_worker": "src/background.min.js"
},
2022-11-16 14:48:05 +00:00
"permissions": [
"storage",
"alarms",
"tabs"
2022-11-16 16:07:15 +00:00
],
"host_permissions": [
2022-11-16 14:48:05 +00:00
"https://*/*",
2022-11-16 16:07:15 +00:00
"http://*/*"
2022-11-16 14:48:05 +00:00
],
"options_ui": {
"page": "src/popup.html"
},
"action": {
"default_popup": "src/popup.html",
"default_icon": "src/icon/48.png",
2022-12-22 01:48:04 +00:00
"default_title": "FediAct settings"
2022-11-16 14:48:05 +00:00
},
"icons": {
"48": "src/icon/48.png"
2022-11-16 14:48:05 +00:00
}
2022-12-22 01:48:04 +00:00
}