Twitter TW Blocker
Blur the tweets containing a trigger warning
什么是Twitter TW Blocker?
Twitter TW Blocker是由tymmesyde开发的Chrome扩展程序,该扩展的主要功能是“Blur the tweets containing a trigger warning”。
扩展截图
下载Twitter TW Blocker扩展crx文件
下载Twitter TW Blocker扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | Twitter TW Blocker |
ID | cmgnaiadimhcfkmfehdbindohbenemnk |
官方URL | https://chromewebstore.google.com/detail/twitter-tw-blocker/cmgnaiadimhcfkmfehdbindohbenemnk |
简介 | Blur the tweets containing a trigger warning |
文件大小 | 15 KB |
安装次数 | 19 |
当前版本 | 1.0 |
更新时间 | 2020-08-09 |
上架时间 | 2020-08-09 |
开发者 | tymmesyde |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | 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" } } } |