Mastodon4 Redirect

Redirects users from Mastodon4 supported instances to their home instance

Mastodon4 Redirect là gì?

Mastodon4 Redirect là một tiện ích mở rộng Chrome được phát triển bởi Mikroni.fi, và tính năng chính của nó là "Redirects users from Mastodon4 supported instances to their home instance".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Mastodon4 Redirect

Tải xuống các tệp mở rộng Mastodon4 Redirect dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Mastodon4 Redirect Mastodon4 Redirect
ID acbfckpoogjdigldffcbldijhgnjpfnc
URL Chính Thức https://chromewebstore.google.com/detail/mastodon4-redirect/acbfckpoogjdigldffcbldijhgnjpfnc
Mô tả Redirects users from Mastodon4 supported instances to their home instance
Kích Thước Tệp 18.97 KB
Số Lần Cài Đặt 119
Phiên Bản Hiện Tại 1.4
Cập Nhật Lần Cuối 2022-11-25
Ngày Phát Hành 2022-11-17
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Mikroni.fi
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/raikasdev/mastodon4-redirect
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}