Grab n' Drag - Scrolling made easy

Scroll web pages by dragging them with your mouse

Qu'est-ce que Grab n' Drag - Scrolling made easy ?

Grab n' Drag - Scrolling made easy est une extension Chrome développée par davidu, et sa fonction principale est "Scroll web pages by dragging them with your mouse".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Grab n' Drag - Scrolling made easy

Téléchargez les fichiers d'extension Grab n' Drag - Scrolling made easy au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Grab n' Drag - Scrolling made easy Grab n' Drag - Scrolling made easy
ID ngmajcafpheboagideajmejgcaafpjpi
URL Officiel https://chrome.google.com/webstore/detail/grab-n-drag-scrolling-mad/ngmajcafpheboagideajmejgcaafpjpi
Description Scroll web pages by dragging them with your mouse
Taille du Fichier 24.13 KB
Nombre d'Installations 91
Version Actuelle 1.0
Dernière Mise à Jour 2020-05-23
Date de Publication 2020-05-23
Évaluation 2.80/5 Total 5 Évaluations
Développeur davidu
Type de Paiement free
Langues Prises en Charge 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"
            ]
        }
    ]
}