Mastodon Redirector

Redirect Mastodon URLs from other instances to your own instance.

O que é Mastodon Redirector?

Mastodon Redirector é uma extensão do Chrome desenvolvida por Bramus Van Damme, e sua principal característica é "Redirect Mastodon URLs from other instances to your own instance.".

Capturas de Tela da Extensão

Baixar o arquivo CRX da Extensão Mastodon Redirector

Baixe arquivos de extensão Mastodon Redirector no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        One thing that’s a bit of a hassle with Mastodon is that you can’t immediately follow people on other instances: you have to copy the username and search for it on the instance that hosts your account. Same story with favoriting and boosting their posts, when viewed on their instance’s URL.

To make this easier, this extension exists. Press the button, and you’ll be taken to the same account or status update you were viewing, but served on the Masto instance your account is on.                    

Informações Básicas da Extensão

Nome Mastodon Redirector Mastodon Redirector
ID limifnkopacddgpihodacjeckfkpbfoe
URL Oficial https://chromewebstore.google.com/detail/mastodon-redirector/limifnkopacddgpihodacjeckfkpbfoe
Descrição Redirect Mastodon URLs from other instances to your own instance.
Tamanho do Arquivo 12.32 KB
Contagem de Instalações 762
Versão Atual 0.4.0
Última Atualização 2023-09-09
Data de Publicação 2022-11-23
Classificação 3.33/5 Total de 6 Avaliações
Desenvolvedor Bramus Van Damme
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/bramus/mastodon-redirector
URL da Página de Ajuda https://github.com/bramus/mastodon-redirector/issues
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Mastodon Redirector",
    "action": [],
    "manifest_version": 3,
    "version": "0.4.0",
    "description": "Redirect Mastodon URLs from other instances to your own instance.",
    "permissions": [
        "activeTab",
        "scripting",
        "storage"
    ],
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "64": "images\/icon-64.png",
        "128": "images\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "windows": "Alt+Shift+M",
                "mac": "Alt+Shift+M",
                "chromeos": "Alt+Shift+M",
                "linux": "Alt+Shift+M"
            }
        }
    },
    "options_ui": {
        "page": "options\/options.html",
        "browser_style": false,
        "open_in_tab": true
    }
}