Mastodon4 Redirect
Redirects users from Mastodon4 supported instances to their home instance
Was ist Mastodon4 Redirect?
Mastodon4 Redirect ist eine Chrome-Erweiterung, die von Mikroni.fi entwickelt wurde, und ihr Hauptmerkmal ist "Redirects users from Mastodon4 supported instances to their home instance".
Erweiterungsscreenshots
Mastodon4 Redirect-Erweiterungs-CRX-Datei herunterladen
Laden Sie Mastodon4 Redirect-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Mastodon4 Redirect |
ID | acbfckpoogjdigldffcbldijhgnjpfnc |
Offizielle URL | https://chromewebstore.google.com/detail/mastodon4-redirect/acbfckpoogjdigldffcbldijhgnjpfnc |
Beschreibung | Redirects users from Mastodon4 supported instances to their home instance |
Dateigröße | 18.97 KB |
Installationsanzahl | 119 |
Aktuelle Version | 1.4 |
Letztes Update | 2022-11-25 |
Veröffentlichungsdatum | 2022-11-17 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | Mikroni.fi |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/raikasdev/mastodon4-redirect |
Unterstützte Sprachen | 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" } } |