Mastodon4 Redirect

Redirects users from Mastodon4 supported instances to their home instance

Hvad er Mastodon4 Redirect?

Mastodon4 Redirect er en Chrome-udvidelse udviklet af Mikroni.fi, og dens hovedfunktion er "Redirects users from Mastodon4 supported instances to their home instance".

Udvidelsesskærmbilleder

screenshot

Download Mastodon4 Redirect-udvidelses-CRX-fil

Download Mastodon4 Redirect-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Mastodon4 Redirect Mastodon4 Redirect
ID acbfckpoogjdigldffcbldijhgnjpfnc
Officiel URL https://chromewebstore.google.com/detail/mastodon4-redirect/acbfckpoogjdigldffcbldijhgnjpfnc
Beskrivelse Redirects users from Mastodon4 supported instances to their home instance
Filstørrelse 18.97 KB
Antal Installationer 119
Nuværende Version 1.4
Senest Opdateret 2022-11-25
Udgivelsesdato 2022-11-17
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler Mikroni.fi
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/raikasdev/mastodon4-redirect
Understøttede Sprog 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"
    }
}