Grab n' Drag - Scrolling made easy

Scroll web pages by dragging them with your mouse

Что такое Grab n' Drag - Scrolling made easy?

Grab n' Drag - Scrolling made easy - это расширение Chrome, разработанное davidu, и его основная функция - "Scroll web pages by dragging them with your mouse".

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

screenshot

Скачать файл CRX расширения Grab n' Drag - Scrolling made easy

Скачайте файлы расширений Grab n' Drag - Scrolling made easy в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

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

                        Scroll web pages by grabbing and dragging, using mouse right-click. 

Using the tool:
To scroll, click and hold the right mouse button.
To temporarily disable the tool, press and hold Ctrl.
Click the hand icon to enable/disable the tool.                    

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

Название Grab n' Drag - Scrolling made easy Grab n' Drag - Scrolling made easy
ID ngmajcafpheboagideajmejgcaafpjpi
Официальный URL https://chrome.google.com/webstore/detail/grab-n-drag-scrolling-mad/ngmajcafpheboagideajmejgcaafpjpi
Описание Scroll web pages by dragging them with your mouse
Размер файла 24.13 KB
Количество установок 91
Текущая Версия 1.0
Последнее Обновление 2020-05-23
Дата публикации 2020-05-23
Рейтинг 2.80/5 Всего 5 оценок
Разработчик davidu
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Grab n' Drag - Scrolling made easy",
    "short_name": "Grab n' Drag",
    "manifest_version": 2,
    "description": "Scroll web pages by dragging them with your mouse",
    "version": "1.0",
    "permissions": [],
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "38": "images\/iconColor38.png"
        }
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persist": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "pan.js"
            ]
        }
    ]
}