Twitter TW Blocker

Blur the tweets containing a trigger warning

Cos'è Twitter TW Blocker?

Twitter TW Blocker è un'estensione di Chrome sviluppata da tymmesyde, e la sua funzione principale è "Blur the tweets containing a trigger warning".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Twitter TW Blocker

Scarica i file di estensione Twitter TW Blocker in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Use Twitter TW Blocker if you want to hide the tweets that have a trigger warning pattern (e.g. TW // content).
Just click on the tweet if you want to remove the warning.                    

Informazioni di Base sull'Estensione

Nome Twitter TW Blocker Twitter TW Blocker
ID cmgnaiadimhcfkmfehdbindohbenemnk
URL Ufficiale https://chromewebstore.google.com/detail/twitter-tw-blocker/cmgnaiadimhcfkmfehdbindohbenemnk
Descrizione Blur the tweets containing a trigger warning
Dimensione del File 15 KB
Conteggio Installazioni 19
Versione Corrente 1.0
Ultimo Aggiornamento 2020-08-09
Data di Pubblicazione 2020-08-09
Sviluppatore tymmesyde
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Twitter TW Blocker",
    "description": "Blur the tweets containing a trigger warning",
    "version": "1.0",
    "icons": {
        "16": "src\/images\/icon_16.png",
        "32": "src\/images\/icon_32.png",
        "48": "src\/images\/icon_48.png",
        "128": "src\/images\/icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.twitter.com\/*"
            ],
            "css": [
                "src\/styles\/content.css"
            ],
            "js": [
                "src\/scripts\/content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "src\/styles\/content.css"
    ],
    "browser_action": {
        "default_popup": "src\/popup.html",
        "default_icon": {
            "16": "src\/images\/icon_16.png",
            "32": "src\/images\/icon_32.png",
            "48": "src\/images\/icon_48.png",
            "128": "src\/images\/icon_128.png"
        }
    }
}