Hide Retweets
Remove retweets by specific users or everyone on Twitter
What is Hide Retweets?
Hide Retweets is a Chrome extension developed by Kevin Leutzinger, and its main feature is "Remove retweets by specific users or everyone on Twitter".
Extension Screenshots
Download Hide Retweets Extension CRX File
Download Hide Retweets 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
Got a friend who retweets too much? Hide/Block/Remove retweets from a specific list of users, or hide everyone's retweets. Retweets are collapsed and can be viewed if clicked. Source: https://github.com/kleutzinger/Hide-Retweets-Extension
Extension Basic Information
Name | |
ID | iehhaigbokpilpilegajanpckfgbegdm |
Official URL | https://chrome.google.com/webstore/detail/hide-retweets/iehhaigbokpilpilegajanpckfgbegdm |
Description | Remove retweets by specific users or everyone on Twitter |
File Size | 334 KB |
Installation Count | 89 |
Current Version | 0.2 |
Last Updated | 2018-02-07 |
Publish Date | 2018-02-07 |
Rating | 2.09/5 Total 11 Ratings |
Developer | Kevin Leutzinger |
[email protected] | |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Hide Retweets", "description": "Remove retweets by specific users or everyone on Twitter", "version": "0.2", "permissions": [ "https:\/\/twitter.com\/", "storage", "activeTab" ], "icons": { "16": "img\/icon16.png", "32": "img\/icon16.png", "48": "img\/icon48.png", "64": "img\/icon48.png", "128": "img\/icon128.png" }, "browser_action": { "default_icon": "img\/icon128.png", "default_popup": "popup.html" }, "content_security_policy": "script-src 'self'; object-src 'self'", "web_accessible_resources": [ "img\/icon128.png", "js\/underscore-1.5.2.min.map" ], "content_scripts": [ { "matches": [ "*:\/\/twitter.com\/*" ], "js": [ "js\/underscore-1.5.2.min.js", "js\/content.js" ], "run_at": "document_end" } ] } |