Twitter Bot Hider
Hides twitter bots from your timeline.
What is Twitter Bot Hider?
Twitter Bot Hider is a Chrome extension developed by Ebu, and its main feature is "Hides twitter bots from your timeline.".
Extension Screenshots
Download Twitter Bot Hider Extension CRX File
Download Twitter Bot Hider 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
Twitter Bot Hider Chrome Extension helps to hide spam/bot tweets under tweets' replies. The source code can be found here: https://github.com/EbuOgden/TwitterBotHider
Extension Basic Information
Name | Twitter Bot Hider |
ID | efpmoenhggjbiaeomapapohigijbobgb |
Official URL | https://chromewebstore.google.com/detail/twitter-bot-hider/efpmoenhggjbiaeomapapohigijbobgb |
Description | Hides twitter bots from your timeline. |
File Size | 40.87 KB |
Installation Count | 33 |
Current Version | 0.1.1 |
Last Updated | 2022-10-31 |
Publish Date | 2022-10-31 |
Rating | 5.00/5 Total 3 Ratings |
Developer | Ebu |
[email protected] | |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Twitter Bot Hider", "version": "0.1.1", "description": "Hides twitter bots from your timeline.", "permissions": [ "tabs" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*.twitter.com\/*" ], "js": [ "contentScript.js" ] } ], "web_accessible_resources": [ { "resources": [ "https:\/\/*.githubusercontent.com\/*" ], "matches": [ "https:\/\/*.twitter.com\/*" ] } ], "action": { "default_icon": { "16": "assets\/ext-icon.png", "24": "assets\/ext-icon.png", "32": "assets\/ext-icon.png" }, "default_title": "Twitter Bot Hider", "default_popup": "popup.html" }, "manifest_version": 3 } |