Twitter Timeline Auto Update
Updates the twitter timeline automatically when new tweets can be shown.
O que é Twitter Timeline Auto Update?
Twitter Timeline Auto Update é uma extensão do Chrome desenvolvida por https://systemcluster.me, e sua principal característica é "Updates the twitter timeline automatically when new tweets can be shown.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Twitter Timeline Auto Update
Baixe arquivos de extensão Twitter Timeline Auto Update no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Twitter Timeline Auto Update |
ID | ddbjabcmjjifognjcopebcllgpbdjlbm |
URL Oficial | https://chromewebstore.google.com/detail/twitter-timeline-auto-upd/ddbjabcmjjifognjcopebcllgpbdjlbm |
Descrição | Updates the twitter timeline automatically when new tweets can be shown. |
Tamanho do Arquivo | 23.5 KB |
Contagem de Instalações | 1,085 |
Versão Atual | 0.3 |
Última Atualização | 2018-07-28 |
Data de Publicação | 2018-07-28 |
Classificação | 3.33/5 Total de 9 Avaliações |
Desenvolvedor | https://systemcluster.me |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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\/*" ] } |