Mirror Block

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

Mirror Blockคืออะไร?

Mirror Block เป็นส่วนขยายของ Chrome ที่พัฒนาโดย 가을별 และคุณลักษณะหลักของมันคือ "A browser extension that allows you to detect and (optionally) Counter-block users who blocked you on Twitter."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Mirror Block

ดาวน์โหลดไฟล์ส่วนขยาย Mirror Block ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Mirror Block Mirror Block
ID hbpjabpglddifkpjeiggalbnpjmhkkac
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/mirror-block/hbpjabpglddifkpjeiggalbnpjmhkkac
คำอธิบาย A browser extension that allows you to detect and (optionally) Counter-block users who blocked you on Twitter.
ขนาดไฟล์ 283 KB
จำนวนการติดตั้ง 24,666
เวอร์ชันปัจจุบัน 0.15.0.0 [MV3]
อัปเดตครั้งล่าสุด 2022-03-25
วันที่เผยแพร่ 2020-06-03
คะแนน 4.08/5 รวมทั้งหมด 25 คะแนน
ผู้พัฒนา 가을별
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/gaeulbyul/MirrorOfBlock
URL หน้านโยบายความเป็นส่วนตัว https://gist.github.com/gaeulbyul/25b3a4abfdd91a32d98a5bbe78769f2d
ภาษาที่รองรับ 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"
    }
}