Mastodon4 Redirect

Redirects users from Mastodon4 supported instances to their home instance

什麼是Mastodon4 Redirect?

Mastodon4 Redirect是由Mikroni.fi開發的Chrome擴展程式,該擴展的主要功能是“Redirects users from Mastodon4 supported instances to their home instance”。

擴展截圖

screenshot

下載Mastodon4 Redirect擴展crx文件

下載Mastodon4 Redirect擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Mastodon4 Redirect Mastodon4 Redirect
ID acbfckpoogjdigldffcbldijhgnjpfnc
官方網址 https://chromewebstore.google.com/detail/mastodon4-redirect/acbfckpoogjdigldffcbldijhgnjpfnc
簡介 Redirects users from Mastodon4 supported instances to their home instance
檔案大小 18.97 KB
安裝次數 119
目前版本 1.4
更新時間 2022-11-25
上架時間 2022-11-17
評分 5.00/5 共 1 次評分
開發者 Mikroni.fi
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/raikasdev/mastodon4-redirect
支援的語言 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"
    }
}