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
官方URL 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"
    }
}