Instagram Lazy Scroll

Automatically scrolls instagram for you. Press spacebar to start and stop scrolling. Icon made by Freepik from www.flaticon.com.

Что такое Instagram Lazy Scroll?

Instagram Lazy Scroll - это расширение Chrome, разработанное Shang Liang, и его основная функция - "Automatically scrolls instagram for you. Press spacebar to start and stop scrolling. Icon made by Freepik from www.flaticon.com.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Instagram Lazy Scroll

Скачайте файлы расширений Instagram Lazy Scroll в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Press SPACE bar to activate auto scrolling and press again to stop it. Remember to reload your page to activate it after first installation.                    

Основная информация о расширении

Название Instagram Lazy Scroll Instagram Lazy Scroll
ID dcnfgigbpekkloejpdhankceopcmlpgc
Официальный URL https://chrome.google.com/webstore/detail/instagram-lazy-scroll/dcnfgigbpekkloejpdhankceopcmlpgc
Описание Automatically scrolls instagram for you. Press spacebar to start and stop scrolling. Icon made by Freepik from www.flaticon.com.
Размер файла 59.92 KB
Количество установок 648
Текущая Версия 0.0.2
Последнее Обновление 2020-06-04
Дата публикации 2020-06-03
Рейтинг 4.00/5 Всего 3 оценок
Разработчик Shang Liang
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Instagram Lazy Scroll",
    "version": "0.0.2",
    "manifest_version": 2,
    "description": "Automatically scrolls instagram for you. Press spacebar to start and stop scrolling. Icon made by Freepik from www.flaticon.com.",
    "icons": {
        "16": "icons\/icon16.png",
        "19": "icons\/icon19.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "browser_action": {
        "default_icon": "icons\/icon128.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "*:\/\/*.instagram.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.instagram.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "injection.js",
        "hud.css"
    ]
}