Mastodon4 Redirect

Redirects users from Mastodon4 supported instances to their home instance

Wat is Mastodon4 Redirect?

Mastodon4 Redirect is een Chrome-extensie ontwikkeld door Mikroni.fi, en de belangrijkste functie is "Redirects users from Mastodon4 supported instances to their home instance".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Mastodon4 Redirect

Download Mastodon4 Redirect-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Mastodon4 Redirect Mastodon4 Redirect
ID acbfckpoogjdigldffcbldijhgnjpfnc
Officiële URL https://chromewebstore.google.com/detail/mastodon4-redirect/acbfckpoogjdigldffcbldijhgnjpfnc
Beschrijving Redirects users from Mastodon4 supported instances to their home instance
Bestandsgrootte 18.97 KB
Aantal Installaties 119
Huidige Versie 1.4
Laatst Bijgewerkt 2022-11-25
Publicatiedatum 2022-11-17
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar Mikroni.fi
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/raikasdev/mastodon4-redirect
Ondersteunde Talen 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"
    }
}