DragFree (Mouse Drag & Right Click Release)

This app enables mouse dragging and right-clicking on sites where these functions are disabled.

什么是DragFree (Mouse Drag & Right Click Release)?

DragFree (Mouse Drag & Right Click Release)是由https://devroid.com开发的Chrome扩展程序,该扩展的主要功能是“This app enables mouse dragging and right-clicking on sites where these functions are disabled.”。

扩展截图

screenshot
screenshot
screenshot

下载DragFree (Mouse Drag & Right Click Release)扩展crx文件

下载DragFree (Mouse Drag & Right Click Release)扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        - 2023-11-21 : A feature to check the character count of the entered text has been added.

- Right click enable.

Allows you to use the feature on a site that has been prevented from dragging the mouse and right-clicking the mouse.
 
- When the "Automatic" state is set to "Manual", the operation is always performed.
- The hot key is set to "Alt + 1" by default and you can change the hot key by clicking the "Defining shortcut" button.

* mouse right-click / mouse drag                    

扩展基本信息

名称 DragFree (Mouse Drag & Right Click Release) DragFree (Mouse Drag & Right Click Release)
ID cnfngpgfjllafbghaimjcmailafcdhod
官方URL https://chromewebstore.google.com/detail/dragfree-mouse-drag-right/cnfngpgfjllafbghaimjcmailafcdhod
简介 This app enables mouse dragging and right-clicking on sites where these functions are disabled.
文件大小 84.7 KB
安装次数 410,465
当前版本 7.8
更新时间 2023-12-09
上架时间 2019-10-03
评分 4.47/5 共131次评分
开发者 https://devroid.com
电子邮箱 [email protected]
付费类型 free
支持的语言 en,zh-CN,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_appName__",
    "short_name": "Drag-Free",
    "description": "__MSG_appDescription__",
    "default_locale": "en",
    "version": "7.8",
    "action": {
        "default_icon": ".\/images\/icon.png",
        "default_popup": "main.html",
        "default_title": "Drag Free"
    },
    "background": {
        "service_worker": "background.js"
    },
    "commands": {
        "releasedrag": {
            "suggested_key": {
                "default": "Alt+1",
                "mac": "Alt+1"
            },
            "description": "DragFree Hotkey"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "releaseDrag.js"
            ],
            "all_frames": true,
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "activeTab",
        "storage"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ]
}