Mastodon4 Redirect
Redirects users from Mastodon4 supported instances to their home instance
What is Mastodon4 Redirect?
Mastodon4 Redirect is a Chrome extension developed by Mikroni.fi, and its main feature is "Redirects users from Mastodon4 supported instances to their home instance".
Extension Screenshots
Download Mastodon4 Redirect Extension CRX File
Download Mastodon4 Redirect extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Mastodon4 Redirect |
ID | acbfckpoogjdigldffcbldijhgnjpfnc |
Official URL | https://chromewebstore.google.com/detail/mastodon4-redirect/acbfckpoogjdigldffcbldijhgnjpfnc |
Description | Redirects users from Mastodon4 supported instances to their home instance |
File Size | 18.97 KB |
Installation Count | 119 |
Current Version | 1.4 |
Last Updated | 2022-11-25 |
Publish Date | 2022-11-17 |
Rating | 5.00/5 Total 1 Ratings |
Developer | Mikroni.fi |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/raikasdev/mastodon4-redirect |
Supported Languages | 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" } } |