Twitter Filter
Hide people on Twitter without blocking or unfollowing them
What is Twitter Filter?
Twitter Filter is a Chrome extension developed by lihan, and its main feature is "Hide people on Twitter without blocking or unfollowing them".
Extension Screenshots
Download Twitter Filter Extension CRX File
Download Twitter Filter 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
You can also filter phrases (TV show spoilers, sports tweets, etc). Leave a ★★★★★ review with feature request.
Extension Basic Information
Name | Twitter Filter |
ID | hfaokbpplplaeglmcpmjacghbnidjnll |
Official URL | https://chromewebstore.google.com/detail/twitter-filter/hfaokbpplplaeglmcpmjacghbnidjnll |
Description | Hide people on Twitter without blocking or unfollowing them |
File Size | 13.05 MB |
Installation Count | 34 |
Current Version | 0.1.4 |
Last Updated | 2014-07-17 |
Publish Date | 2014-07-16 |
Rating | 4.67/5 Total 3 Ratings |
Developer | lihan |
[email protected] | |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Twitter Filter", "version": "0.1.4", "manifest_version": 2, "description": "Hide people on Twitter without blocking or unfollowing them", "icons": { "16": "icons\/icon16.png", "19": "icons\/icon19.png", "48": "icons\/icon48.png" }, "background": { "scripts": [ "bower_components\/underscore\/underscore.js", "dist\/js\/util.js", "dist\/js\/background.js" ] }, "options_page": "dist\/options\/index.html", "browser_action": { "default_icon": "icons\/icon19.png", "default_title": "Twitter filter" }, "permissions": [ "tabs", "storage" ], "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/*", "https:\/\/www.twitter.com\/*" ], "css": [ "dist\/css\/inject.css" ], "js": [ "bower_components\/underscore\/underscore.js", "bower_components\/jquery\/jquery.js", "bower_components\/backbone\/backbone.js", "dist\/js\/util.js", "dist\/js\/models.js", "dist\/js\/inject.js" ] } ] } |