FediAct/manifest.json

31 wiersze
641 B
JSON
Czysty Zwykły widok Historia

2022-11-16 14:48:05 +00:00
{
"name": "FediFollow",
2022-11-16 16:08:38 +00:00
"version": "0.0.2",
2022-11-16 16:07:15 +00:00
"description": "Simplifies following Fediverse user on other instances than your own. Visit https://github.com/lartsch/FediFollow-Chrome for more.",
"manifest_version": 3,
2022-11-16 14:48:05 +00:00
"content_scripts": [
{
"matches": ["*://*/*"],
"js": ["lib/jquery-3.6.1.min.js","inject.js"],
"run_at": "document_start"
}
],
"permissions": [
2022-11-16 16:07:15 +00:00
"storage",
"tabs"
],
"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
],
2022-11-16 16:07:15 +00:00
"action":
2022-11-16 14:48:05 +00:00
{
"default_popup": "popup.html",
"default_icon": "icon/48.png",
"default_title": "Home instance setting"
},
"icons": {
"48": "icon/48.png"
}
2022-11-16 16:07:15 +00:00
}