Twitter thread reader
Chrome extension that makes reading twitter threads easier.
Co je Twitter thread reader?
Twitter thread reader je rozšíření Chrome vyvinuté thevarunraja, a jeho hlavní funkcí je „Chrome extension that makes reading twitter threads easier.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Twitter thread reader
Stáhněte si soubory rozšíření Twitter thread reader 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í
This extension helps you read “long twitter threads” easily(similar to that of a blog or an article). It hides all the unnecessary content and shows only the relevant content in a thread, thereby enhancing your reading experience. Just click "View Thread in Reader mode" button to turn the twitter thread into a delightful reading experience. Extension is privacy friendly, no data is collected and all compute happens on your device.
Základní Informace o Rozšíření
Název | Twitter thread reader |
ID | cbkbehonmkldgmpdpaigonchnngpbnlm |
Oficiální URL | https://chromewebstore.google.com/detail/twitter-thread-reader/cbkbehonmkldgmpdpaigonchnngpbnlm |
Popis | Chrome extension that makes reading twitter threads easier. |
Velikost souboru | 27.21 KB |
Počet instalací | 460 |
Aktuální Verze | 0.3 |
Poslední Aktualizace | 2022-02-15 |
Datum Vydání | 2022-02-07 |
Hodnocení | 3.00/5 Celkem 5 Hodnocení |
Vývojář | thevarunraja |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://threadreader.thevarunraja.com/ |
URL Stránky Zásad Ochrany Soukromí | https://threadreader.thevarunraja.com/privacy |
Podporované Jazyky | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Twitter thread reader", "description": "Chrome extension that makes reading twitter threads easier.", "version": "0.3", "manifest_version": 3, "icons": { "16": "16.png", "48": "48.png", "128": "128.png" }, "host_permissions": [ "https:\/\/twitter.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/*" ], "js": [ "\/content\/contentscript.js" ], "css": [ "\/styles\/index.css" ], "run_at": "document_start" } ], "web_accessible_resources": [ { "resources": [ "threadResponse.js" ], "matches": [ "https:\/\/twitter.com\/*" ] } ] } |