DragFree (Mouse Drag & Right Click Release)

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

¿Qué es DragFree (Mouse Drag & Right Click Release)?

DragFree (Mouse Drag & Right Click Release) es una extensión de Chrome desarrollada por https://devroid.com, y su función principal es "This app enables mouse dragging and right-clicking on sites where these functions are disabled.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión DragFree (Mouse Drag & Right Click Release)

Descarga archivos de extensión DragFree (Mouse Drag & Right Click Release) en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        - 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                    

Información Básica de la Extensión

Nombre DragFree (Mouse Drag & Right Click Release) DragFree (Mouse Drag & Right Click Release)
ID cnfngpgfjllafbghaimjcmailafcdhod
URL Oficial https://chromewebstore.google.com/detail/dragfree-mouse-drag-right/cnfngpgfjllafbghaimjcmailafcdhod
Descripción This app enables mouse dragging and right-clicking on sites where these functions are disabled.
Tamaño del Archivo 84.7 KB
Cantidad de Instalaciones 410,465
Versión Actual 7.8
Última Actualización 2023-12-09
Fecha de Publicación 2019-10-03
Calificación 4.47/5 Total de 131 Calificaciones
Desarrollador https://devroid.com
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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": [
        "*:\/\/*\/*"
    ]
}