Mastodon4 Redirect

Redirects users from Mastodon4 supported instances to their home instance

Vad är Mastodon4 Redirect?

Mastodon4 Redirect är en Chrome-tillägg utvecklad av Mikroni.fi, och dess huvudfunktion är "Redirects users from Mastodon4 supported instances to their home instance".

Tilläggsskärmbilder

screenshot

Ladda ner Mastodon4 Redirect-förlängningens CRX-fil

Ladda ner Mastodon4 Redirect-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Mastodon4 Redirect Mastodon4 Redirect
ID acbfckpoogjdigldffcbldijhgnjpfnc
Officiell webbadress https://chromewebstore.google.com/detail/mastodon4-redirect/acbfckpoogjdigldffcbldijhgnjpfnc
Beskrivning Redirects users from Mastodon4 supported instances to their home instance
Filstorlek 18.97 KB
Antal Installationer 119
Aktuell Version 1.4
Senast Uppdaterad 2022-11-25
Publiceringsdatum 2022-11-17
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare Mikroni.fi
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/raikasdev/mastodon4-redirect
Stödda Språk 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"
    }
}