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) là gì?

DragFree (Mouse Drag & Right Click Release) là một tiện ích mở rộng Chrome được phát triển bởi https://devroid.com, và tính năng chính của nó là "This app enables mouse dragging and right-clicking on sites where these functions are disabled.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng DragFree (Mouse Drag & Right Click Release)

Tải xuống các tệp mở rộng DragFree (Mouse Drag & Right Click Release) dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        - 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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên DragFree (Mouse Drag & Right Click Release) DragFree (Mouse Drag & Right Click Release)
ID cnfngpgfjllafbghaimjcmailafcdhod
URL Chính Thức https://chromewebstore.google.com/detail/dragfree-mouse-drag-right/cnfngpgfjllafbghaimjcmailafcdhod
Mô tả This app enables mouse dragging and right-clicking on sites where these functions are disabled.
Kích Thước Tệp 84.7 KB
Số Lần Cài Đặt 410,465
Phiên Bản Hiện Tại 7.8
Cập Nhật Lần Cuối 2023-12-09
Ngày Phát Hành 2019-10-03
Đánh Giá 4.47/5 Tổng số 131 Đánh Giá
Nhà Phát Triển https://devroid.com
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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": [
        "*:\/\/*\/*"
    ]
}