Twitter Media Preview Blocker
Block media (image, GIF and video) previews on your Twitter timeline. Perfect for avoiding those pesky spoilers!!
Co to jest Twitter Media Preview Blocker?
Twitter Media Preview Blocker to rozszerzenie Chrome opracowane przez Project Kenneth, a jego główną funkcją jest „Block media (image, GIF and video) previews on your Twitter timeline. Perfect for avoiding those pesky spoilers!!”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Twitter Media Preview Blocker
Pobierz pliki rozszerzeń Twitter Media Preview Blocker 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
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!
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | lnpiebfnimnnljdcjoffaidebpkpnknn |
Oficjalny URL | https://chromewebstore.google.com/detail/twitter-media-preview-blo/lnpiebfnimnnljdcjoffaidebpkpnknn |
Opis | Block media (image, GIF and video) previews on your Twitter timeline. Perfect for avoiding those pesky spoilers!! |
Rozmiar pliku | 33.13 KB |
Liczba instalacji | 80 |
Aktualna Wersja | 0.0.1 |
Ostatnia Aktualizacja | 2022-05-04 |
Data Publikacji | 2022-05-04 |
Ocena | 4.50/5 Łącznie 2 Oceny |
Deweloper | Project Kenneth |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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" } } |