Hide Blue Checks

Hide tweets from accounts with blue checkmarks.

Hvad er Hide Blue Checks?

Hide Blue Checks er en Chrome-udvidelse udviklet af Ian Webster, og dens hovedfunktion er "Hide tweets from accounts with blue checkmarks.".

Udvidelsesskærmbilleder

screenshot

Download Hide Blue Checks-udvidelses-CRX-fil

Download Hide Blue Checks-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

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

Grundlæggende oplysninger om udvidelsen

Navn Hide Blue Checks Hide Blue Checks
ID ahghnnmomjbgbfmmeiafbilhjlloaooc
Officiel URL https://chromewebstore.google.com/detail/hide-blue-checks/ahghnnmomjbgbfmmeiafbilhjlloaooc
Beskrivelse Hide tweets from accounts with blue checkmarks.
Filstørrelse 17.17 KB
Antal Installationer 121
Nuværende Version 0.0.1
Senest Opdateret 2022-11-10
Udgivelsesdato 2022-11-07
Bedømmelse 4.50/5 Samlet 4 Bedømmelser
Udvikler Ian Webster
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/typpo/hide-blue-checks
Hjælpeside-URL https://github.com/typpo/hide-blue-checks/issues/new
Understøttede Sprog 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": []
        }
    ]
}