Mirror Block

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

Wat is Mirror Block?

Mirror Block is een Chrome-extensie ontwikkeld door 가을별, en de belangrijkste functie is "A browser extension that allows you to detect and (optionally) Counter-block users who blocked you on Twitter.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Mirror Block

Download Mirror Block-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Mirror Block Mirror Block
ID hbpjabpglddifkpjeiggalbnpjmhkkac
Officiële URL https://chromewebstore.google.com/detail/mirror-block/hbpjabpglddifkpjeiggalbnpjmhkkac
Beschrijving A browser extension that allows you to detect and (optionally) Counter-block users who blocked you on Twitter.
Bestandsgrootte 283 KB
Aantal Installaties 24,666
Huidige Versie 0.15.0.0 [MV3]
Laatst Bijgewerkt 2022-03-25
Publicatiedatum 2020-06-03
Beoordeling 4.08/5 Totaal 25 Beoordelingen
Ontwikkelaar 가을별
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/gaeulbyul/MirrorOfBlock
URL van de Privacybeleid Pagina https://gist.github.com/gaeulbyul/25b3a4abfdd91a32d98a5bbe78769f2d
Ondersteunde Talen 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"
    }
}