Hide Verified Twitter Users
A Chrome extension that hides verified Twitter users' posts.
What is Hide Verified Twitter Users?
Hide Verified Twitter Users is a Chrome extension developed by sardistic, and its main feature is "A Chrome extension that hides verified Twitter users' posts.".
Extension Screenshots
Download Hide Verified Twitter Users Extension CRX File
Download Hide Verified Twitter Users 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
Chrome Extension: Hide Verified Posts This Chrome extension allows you to toggle hiding verified posts on Twitter. When the extension is active, it will hide all tweets from verified users. How to use Install the extension in your Chrome browser. Click on the extension icon in the toolbar to toggle between hiding and showing verified posts. The extension will automatically update the display of tweets on the current page according to your preference (hide/show verified posts). This is a very crude extension that sometimes produces errors, but works enough for my purposes. If you'd like to update or change any of the code, it is published on GitHub here: https://github.com/sardistic/Hide-Verified-Twitter-Users
Extension Basic Information
Name | Hide Verified Twitter Users |
ID | egpeogmkamgdmolhpkajgnoookedcghb |
Official URL | https://chromewebstore.google.com/detail/hide-verified-twitter-use/egpeogmkamgdmolhpkajgnoookedcghb |
Description | A Chrome extension that hides verified Twitter users' posts. |
File Size | 7.72 KB |
Installation Count | 62 |
Current Version | 1.0 |
Last Updated | 2023-04-27 |
Publish Date | 2023-04-26 |
Rating | 2.00/5 Total 1 Ratings |
Developer | sardistic |
[email protected] | |
Payment Type | free |
Extension Website | https://www.sardistic.com |
Help Page URL | https://ko-fi.com/sardistic |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Hide Verified Twitter Users", "version": "1.0", "description": "A Chrome extension that hides verified Twitter users' posts.", "icons": { "48": "icon.png" }, "action": { "default_popup": "popup.html", "default_icon": { "48": "icon.png" } }, "background": { "service_worker": "background.js" }, "permissions": [ "activeTab", "scripting", "storage" ] } |