Twitter Media Preview Blocker
Block media (image, GIF and video) previews on your Twitter timeline. Perfect for avoiding those pesky spoilers!!
Twitter Media Preview Blockerとは何ですか?
Twitter Media Preview BlockerはProject Kennethによって開発されたChromeの拡張機能で、その主な機能は「Block media (image, GIF and video) previews on your Twitter timeline. Perfect for avoiding those pesky spoilers!!」です。
拡張機能のスクリーンショット
Twitter Media Preview Blocker拡張機能のCRXファイルをダウンロード
Twitter Media Preview Blocker拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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!
拡張機能の基本情報
名前 | |
ID | lnpiebfnimnnljdcjoffaidebpkpnknn |
公式URL | https://chromewebstore.google.com/detail/twitter-media-preview-blo/lnpiebfnimnnljdcjoffaidebpkpnknn |
説明 | Block media (image, GIF and video) previews on your Twitter timeline. Perfect for avoiding those pesky spoilers!! |
ファイルサイズ | 33.13 KB |
インストール数 | 80 |
現在のバージョン | 0.0.1 |
最終更新日 | 2022-05-04 |
公開日 | 2022-05-04 |
評価 | 4.50/5 合計 2 レビュー |
開発者 | Project Kenneth |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | 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" } } |