Twitter Timeline Auto Update
Updates the twitter timeline automatically when new tweets can be shown.
Что такое Twitter Timeline Auto Update?
Twitter Timeline Auto Update - это расширение Chrome, разработанное https://systemcluster.me, и его основная функция - "Updates the twitter timeline automatically when new tweets can be shown.".
Снимки экрана расширения
Скачать файл CRX расширения Twitter Timeline Auto Update
Скачайте файлы расширений Twitter Timeline Auto Update в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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.
Основная информация о расширении
Название | Twitter Timeline Auto Update |
ID | ddbjabcmjjifognjcopebcllgpbdjlbm |
Официальный URL | https://chromewebstore.google.com/detail/twitter-timeline-auto-upd/ddbjabcmjjifognjcopebcllgpbdjlbm |
Описание | Updates the twitter timeline automatically when new tweets can be shown. |
Размер файла | 23.5 KB |
Количество установок | 1,085 |
Текущая Версия | 0.3 |
Последнее Обновление | 2018-07-28 |
Дата публикации | 2018-07-28 |
Рейтинг | 3.33/5 Всего 9 оценок |
Разработчик | https://systemcluster.me |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | 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\/*" ] } |