Hide Verified Twitter Users
A Chrome extension that hides verified Twitter users' posts.
Co je Hide Verified Twitter Users?
Hide Verified Twitter Users je rozšíření Chrome vyvinuté sardistic, a jeho hlavní funkcí je „A Chrome extension that hides verified Twitter users' posts.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Hide Verified Twitter Users
Stáhněte si soubory rozšíření Hide Verified Twitter Users ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | Hide Verified Twitter Users |
ID | egpeogmkamgdmolhpkajgnoookedcghb |
Oficiální URL | https://chromewebstore.google.com/detail/hide-verified-twitter-use/egpeogmkamgdmolhpkajgnoookedcghb |
Popis | A Chrome extension that hides verified Twitter users' posts. |
Velikost souboru | 7.72 KB |
Počet instalací | 62 |
Aktuální Verze | 1.0 |
Poslední Aktualizace | 2023-04-27 |
Datum Vydání | 2023-04-26 |
Hodnocení | 2.00/5 Celkem 1 Hodnocení |
Vývojář | sardistic |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://www.sardistic.com |
URL Stránky Nápovědy | https://ko-fi.com/sardistic |
Podporované Jazyky | 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" ] } |