EasyPan Hand Tool

Scroll web pages by dragging them with your mouse

Что такое EasyPan Hand Tool?

EasyPan Hand Tool - это расширение Chrome, разработанное davidu, и его основная функция - "Scroll web pages by dragging them with your mouse".

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

screenshot

Скачать файл CRX расширения EasyPan Hand Tool

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

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

                        EasyPan makes browsing more comfortable.
It allows you to pan a web page (scroll by grabbing the page), just like you do when reading a PDF document.

Using the tool:
Click the hand icon to enable/disable the hand-tool.
When the tool is enabled, clicking Ctrl temporarily disable it.

**Feedback and suggestions are more than welcome**
If there is a bug please elaborate in its description so I can attend it.

----

Credits:
Extension's image icon:
http://www.designcontest.com

Extension's button icon:
www.fatcow.com/free-icons                    

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

Название EasyPan Hand Tool EasyPan Hand Tool
ID egcoefibmfbgpclkjljnmnljppfaafio
Официальный URL https://chromewebstore.google.com/detail/easypan-hand-tool/egcoefibmfbgpclkjljnmnljppfaafio
Описание Scroll web pages by dragging them with your mouse
Размер файла 12.43 KB
Количество установок 670
Текущая Версия 3.0
Последнее Обновление 2015-02-13
Дата публикации 2015-02-13
Рейтинг 3.46/5 Всего 26 оценок
Разработчик davidu
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "EasyPan Hand Tool",
    "short_name": "EasyPan",
    "manifest_version": 2,
    "description": "Scroll web pages by dragging them with your mouse",
    "version": "3.0",
    "permissions": [],
    "page_action": {
        "default_icon": {
            "38": "images\/iconGray38.png"
        }
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persist": false
    },
    "web_accessible_resources": [
        "images\/*.cur"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "pan.js"
            ]
        }
    ]
}