Twitter Sanitizer
Improve your Twitter experience by hiding different features.
What is Twitter Sanitizer?
Twitter Sanitizer is a Chrome extension developed by Hristiyan Dodov, and its main feature is "Improve your Twitter experience by hiding different features.".
Extension Screenshots
Download Twitter Sanitizer Extension CRX File
Download Twitter Sanitizer 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
This extension allows you to hide different parts of Twitter. The most notable feature is removing followers, likes and pretty much all numbers. You can also make you feed more compact by removing the action buttons (reply, retweet, like) from each tweet. However, you can still do these actions after clicking on a tweet. Here's the full list of toggles: - Sidebars - Profile counters - Profile card stats - Post RTs and likes - Feed post actions - Followers you know - Notification faces
Extension Basic Information
Name | Twitter Sanitizer |
ID | amdinnnilgkcpgohiijcejpnhgngmfdl |
Official URL | https://chromewebstore.google.com/detail/twitter-sanitizer/amdinnnilgkcpgohiijcejpnhgngmfdl |
Description | Improve your Twitter experience by hiding different features. |
File Size | 29.21 KB |
Installation Count | 176 |
Current Version | 1.1 |
Last Updated | 2017-06-26 |
Publish Date | 2017-06-25 |
Rating | 4.00/5 Total 3 Ratings |
Developer | Hristiyan Dodov |
[email protected] | |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Twitter Sanitizer", "version": "1.1", "author": "Hristiyan Dodov", "description": "Improve your Twitter experience by hiding different features.", "icons": { "16": "icon-16.png", "32": "icon-32.png", "64": "icon-64.png", "128": "icon-128.png" }, "browser_action": { "default_popup": "popup.html" }, "permissions": [ "storage" ], "content_scripts": [ { "run_at": "document_start", "js": [ "hider.js" ], "matches": [ "http:\/\/twitter.com\/*", "https:\/\/twitter.com\/*" ] } ] } |