Disable Twitter Feed
Removes the timeline on Twitter's homepage.
Co to jest Disable Twitter Feed?
Disable Twitter Feed to rozszerzenie Chrome opracowane przez https://lukasrosenstock.net, a jego główną funkcją jest „Removes the timeline on Twitter's homepage.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Disable Twitter Feed
Pobierz pliki rozszerzeń Disable Twitter Feed 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
The Twitter timeline can be a rabbit-hole that hurts your productivity. Disable Twitter Feed is a minimalist, single-purpose add-on without any configuration options. It does one thing: removing the timeline on Twitter's homepage. All other functionality (e.g., private messages, opening individual profiles) remains intact.
Podstawowe informacje o rozszerzeniu
Nazwa | Disable Twitter Feed |
ID | oppnglmfkpdfodnepgilhcagbbdojekd |
Oficjalny URL | https://chromewebstore.google.com/detail/disable-twitter-feed/oppnglmfkpdfodnepgilhcagbbdojekd |
Opis | Removes the timeline on Twitter's homepage. |
Rozmiar pliku | 8 KB |
Liczba instalacji | 388 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2020-12-04 |
Data Publikacji | 2020-12-03 |
Ocena | 5.00/5 Łącznie 2 Oceny |
Deweloper | https://lukasrosenstock.net |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Disable Twitter Feed", "version": "1.0", "description": "Removes the timeline on Twitter's homepage.", "content_scripts": [ { "matches": [ "*:\/\/*.twitter.com\/*" ], "js": [ "disablefeed.js" ], "run_at": "document_start" } ], "icons": { "48": "icon.png", "96": "[email protected]" } } |