Grab n' Drag - Scrolling made easy

Scroll web pages by dragging them with your mouse

Co to jest Grab n' Drag - Scrolling made easy?

Grab n' Drag - Scrolling made easy to rozszerzenie Chrome opracowane przez davidu, a jego główną funkcją jest „Scroll web pages by dragging them with your mouse”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Grab n' Drag - Scrolling made easy

Pobierz pliki rozszerzeń Grab n' Drag - Scrolling made easy w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Grab n' Drag - Scrolling made easy Grab n' Drag - Scrolling made easy
ID ngmajcafpheboagideajmejgcaafpjpi
Oficjalny URL https://chrome.google.com/webstore/detail/grab-n-drag-scrolling-mad/ngmajcafpheboagideajmejgcaafpjpi
Opis Scroll web pages by dragging them with your mouse
Rozmiar pliku 24.13 KB
Liczba instalacji 91
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2020-05-23
Data Publikacji 2020-05-23
Ocena 2.80/5 Łącznie 5 Oceny
Deweloper davidu
Typ Płatności free
Obsługiwane Języki 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"
            ]
        }
    ]
}