DragFree (Mouse Drag & Right Click Release)

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

Co to jest DragFree (Mouse Drag & Right Click Release)?

DragFree (Mouse Drag & Right Click Release) to rozszerzenie Chrome opracowane przez https://devroid.com, a jego główną funkcją jest „This app enables mouse dragging and right-clicking on sites where these functions are disabled.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia DragFree (Mouse Drag & Right Click Release)

Pobierz pliki rozszerzeń DragFree (Mouse Drag & Right Click Release) w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        - 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                    

Podstawowe informacje o rozszerzeniu

Nazwa DragFree (Mouse Drag & Right Click Release) DragFree (Mouse Drag & Right Click Release)
ID cnfngpgfjllafbghaimjcmailafcdhod
Oficjalny URL https://chromewebstore.google.com/detail/dragfree-mouse-drag-right/cnfngpgfjllafbghaimjcmailafcdhod
Opis This app enables mouse dragging and right-clicking on sites where these functions are disabled.
Rozmiar pliku 84.7 KB
Liczba instalacji 410,465
Aktualna Wersja 7.8
Ostatnia Aktualizacja 2023-12-09
Data Publikacji 2019-10-03
Ocena 4.47/5 Łącznie 131 Oceny
Deweloper https://devroid.com
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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": [
        "*:\/\/*\/*"
    ]
}