Clean Twitter
Remove all the annoying clutter from your Twitter.
Co je Clean Twitter?
Clean Twitter je rozšíření Chrome vyvinuté dhaiwatpandya, a jeho hlavní funkcí je „Remove all the annoying clutter from your Twitter.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Clean Twitter
Stáhněte si soubory rozšíření Clean Twitter 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í
Enhance your Twitter experience by removing some of the clutter. Currently supported features: 1) No sidebars on the right (Trending hashtags, ads, follow recommendations, etc) 2) No metrics/numbers (Likes, RTs, replies, followers) You can turn any of the features on and off at any time. This extension is open-source (https://github.com/Dhaiwat10/clean-twitter) and 100% safe to use. It does not collect any information or store it.
Základní Informace o Rozšíření
Název | Clean Twitter |
ID | ibcjnfhpdjinbcmojnmpnokcgfljiebb |
Oficiální URL | https://chromewebstore.google.com/detail/clean-twitter/ibcjnfhpdjinbcmojnmpnokcgfljiebb |
Popis | Remove all the annoying clutter from your Twitter. |
Velikost souboru | 98.75 KB |
Počet instalací | 306 |
Aktuální Verze | 0.3.0 |
Poslední Aktualizace | 2021-02-26 |
Datum Vydání | 2021-02-16 |
Hodnocení | 4.00/5 Celkem 4 Hodnocení |
Vývojář | dhaiwatpandya |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/Dhaiwat10/clean-twitter |
URL Stránky Nápovědy | https://github.com/Dhaiwat10/clean-twitter/issues |
Podporované Jazyky | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Clean Twitter", "description": "Remove all the annoying clutter from your Twitter.", "version": "0.3.0", "icons": { "16": "icon.png", "32": "icon.png" }, "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/*" ], "js": [ "js\/jquery.js", "js\/content.js", "js\/popup.js" ] } ], "browser_action": { "default_icon": "icon.png", "default_title": "Clean Twitter", "default_popup": "popup.html" }, "permissions": [ "activeTab", "storage", "tabs" ] } |