Hide Blue Checks

Hide tweets from accounts with blue checkmarks.

Co to jest Hide Blue Checks?

Hide Blue Checks to rozszerzenie Chrome opracowane przez Ian Webster, a jego główną funkcją jest „Hide tweets from accounts with blue checkmarks.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Hide Blue Checks

Pobierz pliki rozszerzeń Hide Blue Checks w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        This extension hides tweets from accounts with Blue "Verified" Checkmarks.                    

Podstawowe informacje o rozszerzeniu

Nazwa Hide Blue Checks Hide Blue Checks
ID ahghnnmomjbgbfmmeiafbilhjlloaooc
Oficjalny URL https://chromewebstore.google.com/detail/hide-blue-checks/ahghnnmomjbgbfmmeiafbilhjlloaooc
Opis Hide tweets from accounts with blue checkmarks.
Rozmiar pliku 17.17 KB
Liczba instalacji 121
Aktualna Wersja 0.0.1
Ostatnia Aktualizacja 2022-11-10
Data Publikacji 2022-11-07
Ocena 4.50/5 Łącznie 4 Oceny
Deweloper Ian Webster
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/typpo/hide-blue-checks
Adres URL Strony Pomocy https://github.com/typpo/hide-blue-checks/issues/new
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Hide Blue Checks",
    "version": "0.0.1",
    "description": "Hide tweets from accounts with blue checkmarks.",
    "homepage_url": "https:\/\/github.com\/typpo\/hide-blue-checks",
    "manifest_version": 3,
    "minimum_chrome_version": "100",
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "100.0"
        }
    },
    "icons": {
        "128": "icon.3998fbaf.png"
    },
    "permissions": [],
    "host_permissions": [
        "https:\/\/twitter.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/*"
            ],
            "js": [
                "content.b1d20040.js"
            ],
            "run_at": "document_end",
            "css": []
        }
    ]
}