Mastodon Redirector

Redirect Mastodon URLs from other instances to your own instance.

Mastodon Redirectorとは何ですか?

Mastodon RedirectorはBramus Van Dammeによって開発されたChromeの拡張機能で、その主な機能は「Redirect Mastodon URLs from other instances to your own instance.」です。

拡張機能のスクリーンショット

Mastodon Redirector拡張機能のCRXファイルをダウンロード

Mastodon Redirector拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 Mastodon Redirector Mastodon Redirector
ID limifnkopacddgpihodacjeckfkpbfoe
公式URL https://chromewebstore.google.com/detail/mastodon-redirector/limifnkopacddgpihodacjeckfkpbfoe
説明 Redirect Mastodon URLs from other instances to your own instance.
ファイルサイズ 12.32 KB
インストール数 762
現在のバージョン 0.4.0
最終更新日 2023-09-09
公開日 2022-11-23
評価 3.33/5 合計 6 レビュー
開発者 Bramus Van Damme
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/bramus/mastodon-redirector
ヘルプページのURL https://github.com/bramus/mastodon-redirector/issues
対応言語 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
    }
}