Twitter Timeline Auto Update
Updates the twitter timeline automatically when new tweets can be shown.
Hvad er Twitter Timeline Auto Update?
Twitter Timeline Auto Update er en Chrome-udvidelse udviklet af https://systemcluster.me, og dens hovedfunktion er "Updates the twitter timeline automatically when new tweets can be shown.".
Udvidelsesskærmbilleder
Download Twitter Timeline Auto Update-udvidelses-CRX-fil
Download Twitter Timeline Auto Update-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | Twitter Timeline Auto Update |
ID | ddbjabcmjjifognjcopebcllgpbdjlbm |
Officiel URL | https://chromewebstore.google.com/detail/twitter-timeline-auto-upd/ddbjabcmjjifognjcopebcllgpbdjlbm |
Beskrivelse | Updates the twitter timeline automatically when new tweets can be shown. |
Filstørrelse | 23.5 KB |
Antal Installationer | 1,085 |
Nuværende Version | 0.3 |
Senest Opdateret | 2018-07-28 |
Udgivelsesdato | 2018-07-28 |
Bedømmelse | 3.33/5 Samlet 9 Bedømmelser |
Udvikler | https://systemcluster.me |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | 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\/*" ] } |