Twitter Timeline Auto Update
Updates the twitter timeline automatically when new tweets can be shown.
Co je Twitter Timeline Auto Update?
Twitter Timeline Auto Update je rozšíření Chrome vyvinuté https://systemcluster.me, a jeho hlavní funkcí je „Updates the twitter timeline automatically when new tweets can be shown.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Twitter Timeline Auto Update
Stáhněte si soubory rozšíření Twitter Timeline Auto Update ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Twitter Timeline Auto Update |
ID | ddbjabcmjjifognjcopebcllgpbdjlbm |
Oficiální URL | https://chromewebstore.google.com/detail/twitter-timeline-auto-upd/ddbjabcmjjifognjcopebcllgpbdjlbm |
Popis | Updates the twitter timeline automatically when new tweets can be shown. |
Velikost souboru | 23.5 KB |
Počet instalací | 1,085 |
Aktuální Verze | 0.3 |
Poslední Aktualizace | 2018-07-28 |
Datum Vydání | 2018-07-28 |
Hodnocení | 3.33/5 Celkem 9 Hodnocení |
Vývojář | https://systemcluster.me |
[email protected] | |
Typ Platby | free |
Podporované Jazyky | 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\/*" ] } |