Middle Click Scroll

Clicking the middle click/wheel now takes you to the top of the page

Что такое Middle Click Scroll?

Middle Click Scroll - это расширение Chrome, разработанное alarv, и его основная функция - "Clicking the middle click/wheel now takes you to the top of the page".

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

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

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

                        Give life to your mouse wheel click! By clicking the mouse wheel or the middle mouse click, you can now scroll to the top of the page or to the bottom! If you want to cancel your action, don't worry! 1 second after you keep the mouse wheel clicked, the event is cancelled, to avoid unwanted scrolls. Enjoy scrolling!                    

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

Название Middle Click Scroll Middle Click Scroll
ID fjpenocmelcgifceikomkkjkhdfgghjn
Официальный URL https://chrome.google.com/webstore/detail/middle-click-scroll/fjpenocmelcgifceikomkkjkhdfgghjn
Описание Clicking the middle click/wheel now takes you to the top of the page
Размер файла 15.16 KB
Количество установок 195
Текущая Версия 1.0
Последнее Обновление 2016-06-07
Дата публикации 2016-06-07
Рейтинг 2.29/5 Всего 7 оценок
Разработчик alarv
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Middle Click Scroll",
    "version": "1.0",
    "description": "Clicking the middle click\/wheel now takes you to the top of the page",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "author": "Alex",
    "permissions": [
        "activeTab"
    ],
    "browser_action": {
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ]
}