Mirror Block

A browser extension that allows you to detect and (optionally) Counter-block users who blocked you on Twitter.

Mirror Block là gì?

Mirror Block là một tiện ích mở rộng Chrome được phát triển bởi 가을별, và tính năng chính của nó là "A browser extension that allows you to detect and (optionally) Counter-block users who blocked you on Twitter.".

Ả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 Mirror Block

Tải xuống các tệp mở rộng Mirror Block 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

                        Mirror Block is an extension that detects and (optionally) counter-block the users that block you on Twitter.

# Changelog
v0.15.0.0:
- Manifest v3 (Chrome/Chromium only.)
- Compatible with React v17                    

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

Tên Mirror Block Mirror Block
ID hbpjabpglddifkpjeiggalbnpjmhkkac
URL Chính Thức https://chromewebstore.google.com/detail/mirror-block/hbpjabpglddifkpjeiggalbnpjmhkkac
Mô tả A browser extension that allows you to detect and (optionally) Counter-block users who blocked you on Twitter.
Kích Thước Tệp 283 KB
Số Lần Cài Đặt 24,666
Phiên Bản Hiện Tại 0.15.0.0 [MV3]
Cập Nhật Lần Cuối 2022-03-25
Ngày Phát Hành 2020-06-03
Đánh Giá 4.08/5 Tổng số 25 Đánh Giá
Nhà Phát Triển 가을별
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/gaeulbyul/MirrorOfBlock
URL Trang Chính Sách Bảo Mật https://gist.github.com/gaeulbyul/25b3a4abfdd91a32d98a5bbe78769f2d
Ngôn Ngữ Được Hỗ Trợ en,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "__MSG_extension_description__",
    "manifest_version": 3,
    "name": "Mirror Block",
    "author": "Gaeulbyul ",
    "version": "0.15.0.0",
    "version_name": "0.15.0.0 [MV3]",
    "default_locale": "en",
    "homepage_url": "https:\/\/github.com\/gaeulbyul\/MirrorBlock",
    "icons": {
        "48": "icons\/icon-48.png",
        "64": "icons\/icon-64.png",
        "128": "icons\/icon-128.png"
    },
    "host_permissions": [
        "https:\/\/twitter.com\/*",
        "https:\/\/mobile.twitter.com\/*",
        "https:\/\/tweetdeck.twitter.com\/*"
    ],
    "permissions": [
        "storage",
        "contextMenus",
        "activeTab"
    ],
    "options_ui": {
        "page": "options\/options.html"
    },
    "background": {
        "service_worker": "service-worker-loader.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/*",
                "https:\/\/mobile.twitter.com\/*",
                "https:\/\/tweetdeck.twitter.com\/*"
            ],
            "css": [
                "styles\/mirrorblock.css",
                "styles\/mob-badge.css",
                "styles\/chainblock.css"
            ],
            "js": [
                "bundled\/twitter.bun.js",
                "bundled\/chainblock.bun.js"
            ]
        },
        {
            "matches": [
                "https:\/\/tweetdeck.twitter.com\/*"
            ],
            "css": [
                "styles\/tweetdeck.css"
            ],
            "js": [
                "bundled\/tweetdeck.bun.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                "https:\/\/twitter.com\/*",
                "https:\/\/mobile.twitter.com\/*",
                "https:\/\/tweetdeck.twitter.com\/*"
            ],
            "resources": [
                "bundled\/tweetdeck_inject.bun.js",
                "bundled\/twitter_inject.bun.js"
            ]
        }
    ],
    "action": {
        "default_icon": "icons\/icon-48.png",
        "default_title": "Mirror Block",
        "default_popup": "popup\/popup.html"
    }
}