Read Only Twitter
Enhance your Twitter experience by preventing yourself from actually interacting.
Co to jest Read Only Twitter?
Read Only Twitter to rozszerzenie Chrome opracowane przez TheCleric, a jego główną funkcją jest „Enhance your Twitter experience by preventing yourself from actually interacting.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Read Only Twitter
Pobierz pliki rozszerzeń Read Only Twitter 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
By not interacting you're less likely to get sucked into useless arguments, which will make you happier in the long run. Allow your Twitter stream to flow past you, and then let it go. Options to disable tweets, retweets, likes, and direct messages.
Podstawowe informacje o rozszerzeniu
Nazwa | Read Only Twitter |
ID | cemhfjoonebpbnddchcopobdgdngnhdl |
Oficjalny URL | https://chromewebstore.google.com/detail/read-only-twitter/cemhfjoonebpbnddchcopobdgdngnhdl |
Opis | Enhance your Twitter experience by preventing yourself from actually interacting. |
Rozmiar pliku | 164 KB |
Liczba instalacji | 56 |
Aktualna Wersja | 1.0.1 |
Ostatnia Aktualizacja | 2020-08-24 |
Data Publikacji | 2020-08-21 |
Ocena | 5.00/5 Łącznie 3 Oceny |
Deweloper | TheCleric |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/TheCleric/ReadOnlyTwitter |
Adres URL Strony Pomocy | https://github.com/TheCleric/ReadOnlyTwitter |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Read Only Twitter", "version": "1.0.1", "description": "Enhance your Twitter experience by preventing yourself from actually interacting.", "manifest_version": 2, "permissions": [ "storage" ], "options_ui": { "page": "readOnlyTwitterOptions.html", "open_in_tab": false }, "browser_action": { "default_popup": "readOnlyTwitterOptions.html", "default_icon": { "128": "icons\/ReadOnlyTwitter128.png", "512": "icons\/ReadOnlyTwitter.png" } }, "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/*" ], "js": [ "readOnlyTwitter.js" ] } ], "content_security_policy": "script-src 'self' https:\/\/cdnjs.cloudflare.com https:\/\/www.googletagmanager.com; object-src 'self'", "icons": { "128": "icons\/ReadOnlyTwitter128.png", "512": "icons\/ReadOnlyTwitter.png" } } |