Twitter thread reader
Chrome extension that makes reading twitter threads easier.
Co to jest Twitter thread reader?
Twitter thread reader to rozszerzenie Chrome opracowane przez thevarunraja, a jego główną funkcją jest „Chrome extension that makes reading twitter threads easier.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Twitter thread reader
Pobierz pliki rozszerzeń Twitter thread reader w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | cbkbehonmkldgmpdpaigonchnngpbnlm |
| Oficjalny URL | https://chromewebstore.google.com/detail/twitter-thread-reader/cbkbehonmkldgmpdpaigonchnngpbnlm |
| Opis | Chrome extension that makes reading twitter threads easier. |
| Rozmiar pliku | 27.21 KB |
| Liczba instalacji | 460 |
| Aktualna Wersja | 0.3 |
| Ostatnia Aktualizacja | 2022-02-15 |
| Data Publikacji | 2022-02-07 |
| Ocena | 3.00/5 Łącznie 5 Oceny |
| Deweloper | thevarunraja |
| [email protected] | |
| Typ Płatności | free |
| Strona Rozszerzenia | https://threadreader.thevarunraja.com/ |
| Adres URL Strony Polityki Prywatności | https://threadreader.thevarunraja.com/privacy |
| Obsługiwane Języki | 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\/*"
]
}
]
} | |