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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This app enables mouse dragging and right-clicking on sites where these functions are disabled."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में DragFree (Mouse Drag & Right Click Release) एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        - 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": [
        "*:\/\/*\/*"
    ]
}