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 |
电子邮箱 | [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" } } |