Mastodon4 Redirect
Redirects users from Mastodon4 supported instances to their home instance
Co to jest Mastodon4 Redirect?
Mastodon4 Redirect to rozszerzenie Chrome opracowane przez Mikroni.fi, a jego główną funkcją jest „Redirects users from Mastodon4 supported instances to their home instance”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Mastodon4 Redirect
Pobierz pliki rozszerzeń Mastodon4 Redirect w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Redirects you from other Mastodon instances to your own instances equilevant page, so you don't have to manually go to your instance and paste the URL in the search bar.
Podstawowe informacje o rozszerzeniu
Nazwa | Mastodon4 Redirect |
ID | acbfckpoogjdigldffcbldijhgnjpfnc |
Oficjalny URL | https://chromewebstore.google.com/detail/mastodon4-redirect/acbfckpoogjdigldffcbldijhgnjpfnc |
Opis | Redirects users from Mastodon4 supported instances to their home instance |
Rozmiar pliku | 18.97 KB |
Liczba instalacji | 119 |
Aktualna Wersja | 1.4 |
Ostatnia Aktualizacja | 2022-11-25 |
Data Publikacji | 2022-11-17 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | Mikroni.fi |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/raikasdev/mastodon4-redirect |
Obsługiwane Języki | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Mastodon4 Redirect", "version": "1.4", "description": "Redirects users from Mastodon4 supported instances to their home instance", "icons": { "16": "icon-16.png", "32": "icon-32.png", "48": "icon-48.png", "128": "icon-128.png" }, "author": "raikasdev", "action": { "default_popup": "src\/popup.html" }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "m4redirect.js" ] } ], "options_ui": { "page": "src\/options.html" }, "background": { "service_worker": "src\/background.js" } } |