Twitter Timeline Auto Update
Updates the twitter timeline automatically when new tweets can be shown.
Co to jest Twitter Timeline Auto Update?
Twitter Timeline Auto Update to rozszerzenie Chrome opracowane przez https://systemcluster.me, a jego główną funkcją jest „Updates the twitter timeline automatically when new tweets can be shown.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Twitter Timeline Auto Update
Pobierz pliki rozszerzeń Twitter Timeline Auto Update 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
Twitter Auto Update updates the twitter timeline automatically, removing the need of the additional user interaction each time new tweets should be shown. By default the extension only updates the timeline while it isn't scrolled down, an option is provided to enable unconditional updates.
Podstawowe informacje o rozszerzeniu
Nazwa | Twitter Timeline Auto Update |
ID | ddbjabcmjjifognjcopebcllgpbdjlbm |
Oficjalny URL | https://chromewebstore.google.com/detail/twitter-timeline-auto-upd/ddbjabcmjjifognjcopebcllgpbdjlbm |
Opis | Updates the twitter timeline automatically when new tweets can be shown. |
Rozmiar pliku | 23.5 KB |
Liczba instalacji | 1,085 |
Aktualna Wersja | 0.3 |
Ostatnia Aktualizacja | 2018-07-28 |
Data Publikacji | 2018-07-28 |
Ocena | 3.33/5 Łącznie 9 Oceny |
Deweloper | https://systemcluster.me |
[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": "Twitter Timeline Auto Update", "short_name": "Twitter Refresh", "description": "Updates the twitter timeline automatically when new tweets can be shown.", "version": "0.3", "options_ui": { "page": "chrome\/content\/settings_inline.html", "chrome_style": true }, "icons": { "64": "chrome\/skin\/icon64.png", "128": "chrome\/skin\/icon128.png", "256": "chrome\/skin\/icon256.png" }, "background": { "scripts": [ "lib\/background.js" ] }, "content_scripts": [ { "js": [ "lib\/inject.js" ], "matches": [ "*:\/\/twitter.com\/*" ], "run_at": "document_end" } ], "permissions": [ "*:\/\/twitter.com\/*" ] } |