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是由davidu開發的Chrome擴展程式,該擴展的主要功能是“Scroll web pages by dragging them with your mouse”。

擴展截圖

screenshot

下載Grab n' Drag - Scrolling made easy擴展crx文件

下載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
官方網址 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"
            ]
        }
    ]
}