Twitter thread reader
Chrome extension that makes reading twitter threads easier.
Twitter thread reader क्या है?
Twitter thread reader thevarunraja द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Chrome extension that makes reading twitter threads easier."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Twitter thread reader एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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.
एक्सटेंशन की मूल जानकारी
नाम | Twitter thread reader |
ID | cbkbehonmkldgmpdpaigonchnngpbnlm |
आधिकारिक URL | https://chromewebstore.google.com/detail/twitter-thread-reader/cbkbehonmkldgmpdpaigonchnngpbnlm |
विवरण | Chrome extension that makes reading twitter threads easier. |
फ़ाइल का आकार | 27.21 KB |
स्थापना संख्या | 460 |
वर्तमान संस्करण | 0.3 |
अंतिम अपडेट | 2022-02-15 |
प्रकाशन तिथि | 2022-02-07 |
रेटिंग | 3.00/5 कुल 5 रेटिंग्स |
डेवलपर | thevarunraja |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://threadreader.thevarunraja.com/ |
गोपनीयता नीति पृष्ठ URL | https://threadreader.thevarunraja.com/privacy |
समर्थित भाषाएँ | 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\/*" ] } ] } |