Mastodon4 Redirect

Redirects users from Mastodon4 supported instances to their home instance

Cos'è Mastodon4 Redirect?

Mastodon4 Redirect è un'estensione di Chrome sviluppata da Mikroni.fi, e la sua funzione principale è "Redirects users from Mastodon4 supported instances to their home instance".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Mastodon4 Redirect

Scarica i file di estensione Mastodon4 Redirect in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Mastodon4 Redirect Mastodon4 Redirect
ID acbfckpoogjdigldffcbldijhgnjpfnc
URL Ufficiale https://chromewebstore.google.com/detail/mastodon4-redirect/acbfckpoogjdigldffcbldijhgnjpfnc
Descrizione Redirects users from Mastodon4 supported instances to their home instance
Dimensione del File 18.97 KB
Conteggio Installazioni 119
Versione Corrente 1.4
Ultimo Aggiornamento 2022-11-25
Data di Pubblicazione 2022-11-17
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Mikroni.fi
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/raikasdev/mastodon4-redirect
Lingue Supportate 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"
    }
}