Twitter Lazy Scroll
Automatically scrolls Twitter for you. Press spacebar to start and stop scrolling. You can adjust the speed on the side bar.
Что такое Twitter Lazy Scroll?
Twitter Lazy Scroll - это расширение Chrome, разработанное Shang Liang, и его основная функция - "Automatically scrolls Twitter for you. Press spacebar to start and stop scrolling. You can adjust the speed on the side bar.".
Снимки экрана расширения
Скачать файл CRX расширения Twitter Lazy Scroll
Скачайте файлы расширений Twitter Lazy Scroll в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Automatically scrolls Twitter for you. Press spacebar to start and stop scrolling. You can adjust the speed on the sidebar.
Основная информация о расширении
Название | Twitter Lazy Scroll |
ID | fkbneanchjmfmnbkbkfejifnjpjgnpif |
Официальный URL | https://chromewebstore.google.com/detail/twitter-lazy-scroll/fkbneanchjmfmnbkbkfejifnjpjgnpif |
Описание | Automatically scrolls Twitter for you. Press spacebar to start and stop scrolling. You can adjust the speed on the side bar. |
Размер файла | 59.46 KB |
Количество установок | 429 |
Текущая Версия | 0.0.2 |
Последнее Обновление | 2020-08-04 |
Дата публикации | 2020-08-04 |
Рейтинг | 3.67/5 Всего 3 оценок |
Разработчик | Shang Liang |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Twitter Lazy Scroll", "version": "0.0.2", "manifest_version": 2, "description": "Automatically scrolls Twitter for you. Press spacebar to start and stop scrolling. You can adjust the speed on the side bar.", "icons": { "16": "icons\/icon16.png", "19": "icons\/icon19.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "browser_action": { "default_icon": "icons\/icon128.png" }, "permissions": [ "https:\/\/twitter.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/*" ], "js": [ "content.js" ] } ], "web_accessible_resources": [ "injection.js", "hud.css" ], "background": { "scripts": [ "background.js" ] } } |