Twitter TW Blocker
Blur the tweets containing a trigger warning
What is Twitter TW Blocker?
Twitter TW Blocker is a Chrome extension developed by tymmesyde, and its main feature is "Blur the tweets containing a trigger warning".
Extension Screenshots
Download Twitter TW Blocker Extension CRX File
Download Twitter TW Blocker extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Twitter TW Blocker |
ID | cmgnaiadimhcfkmfehdbindohbenemnk |
Official URL | https://chromewebstore.google.com/detail/twitter-tw-blocker/cmgnaiadimhcfkmfehdbindohbenemnk |
Description | Blur the tweets containing a trigger warning |
File Size | 15 KB |
Installation Count | 19 |
Current Version | 1.0 |
Last Updated | 2020-08-09 |
Publish Date | 2020-08-09 |
Developer | tymmesyde |
[email protected] | |
Payment Type | free |
Supported Languages | 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" } } } |