Twitter Media Preview Blocker

Block media (image, GIF and video) previews on your Twitter timeline. Perfect for avoiding those pesky spoilers!!

Cos'è Twitter Media Preview Blocker?

Twitter Media Preview Blocker è un'estensione di Chrome sviluppata da Project Kenneth, e la sua funzione principale è "Block media (image, GIF and video) previews on your Twitter timeline. Perfect for avoiding those pesky spoilers!!".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Twitter Media Preview Blocker

Scarica i file di estensione Twitter Media Preview 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

                        Want to hide media previews on Twitter to avoid seeing unexpected and unwanted images, GIFs, or videos on your timeline?

Want to avoid getting spoiled on Twitter?

Then this is the perfect Chrome extension for you!

Once enabled, you will no longer see actual media previews on your Twitter timeline. If you are 100% sure you want to view the media, just click on the tweet and you'll be able to do so.

All of this in one click.

So, what are you waiting for? Download Twitter Media Preview Blocker now!                    

Informazioni di Base sull'Estensione

Nome Twitter Media Preview Blocker Twitter Media Preview Blocker
ID lnpiebfnimnnljdcjoffaidebpkpnknn
URL Ufficiale https://chromewebstore.google.com/detail/twitter-media-preview-blo/lnpiebfnimnnljdcjoffaidebpkpnknn
Descrizione Block media (image, GIF and video) previews on your Twitter timeline. Perfect for avoiding those pesky spoilers!!
Dimensione del File 33.13 KB
Conteggio Installazioni 80
Versione Corrente 0.0.1
Ultimo Aggiornamento 2022-05-04
Data di Pubblicazione 2022-05-04
Valutazione 4.50/5 Totale 2 Valutazioni
Sviluppatore Project Kenneth
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitter Media Preview Blocker",
    "description": "Block media (image, GIF and video) previews on your Twitter timeline. Perfect for avoiding those pesky spoilers!!",
    "version": "0.0.1",
    "author": "Movies Mixed Up",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.twitter.com\/*"
            ],
            "js": [
                "inject\/tmpb-main.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "images\/placeholder.png"
            ],
            "matches": [
                "https:\/\/*.twitter.com\/*"
            ]
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "action": {
        "default_title": "Twitter Media Preview Block Options",
        "default_popup": "popup\/popup.html"
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "background": {
        "service_worker": "background.js"
    }
}