Twitter Timeline Auto Update
Updates the twitter timeline automatically when new tweets can be shown.
Vad är Twitter Timeline Auto Update?
Twitter Timeline Auto Update är en Chrome-tillägg utvecklad av https://systemcluster.me, och dess huvudfunktion är "Updates the twitter timeline automatically when new tweets can be shown.".
Tilläggsskärmbilder
Ladda ner Twitter Timeline Auto Update-förlängningens CRX-fil
Ladda ner Twitter Timeline Auto Update-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
Namn | Twitter Timeline Auto Update |
ID | ddbjabcmjjifognjcopebcllgpbdjlbm |
Officiell webbadress | https://chromewebstore.google.com/detail/twitter-timeline-auto-upd/ddbjabcmjjifognjcopebcllgpbdjlbm |
Beskrivning | Updates the twitter timeline automatically when new tweets can be shown. |
Filstorlek | 23.5 KB |
Antal Installationer | 1,085 |
Aktuell Version | 0.3 |
Senast Uppdaterad | 2018-07-28 |
Publiceringsdatum | 2018-07-28 |
Betyg | 3.33/5 Totalt 9 Betyg |
Utvecklare | https://systemcluster.me |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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\/*" ] } |