FediAct/manifest.json

38 wiersze
801 B
JSON
Czysty Zwykły widok Historia

2022-11-16 14:48:05 +00:00
{
"name": "FediFollow",
"version": "0.5.2",
"description": "Simplifies interactions on other Mastodon instances than your own. Visit https://github.com/lartsch/FediFollow-Chrome 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","src/inject.js"],
2022-11-16 14:48:05 +00:00
"run_at": "document_start"
}
],
"background": {
"service_worker": "src/background.js",
"persistent": false
},
2022-11-16 14:48:05 +00:00
"permissions": [
"storage",
"alarms"
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"
},
2022-11-16 16:07:15 +00:00
"action":
2022-11-16 14:48:05 +00:00
{
"default_popup": "src/popup.html",
"default_icon": "src/icon/48.png",
"default_title": "FediFollow settings"
2022-11-16 14:48:05 +00:00
},
"icons": {
"48": "src/icon/48.png"
2022-11-16 14:48:05 +00:00
}
2022-11-16 16:07:15 +00:00
}