DragIt!

Drag & drop links or selected text to open/search in new tab. Drag right for a new, focused tab. Drag left for a new, unfocused tab.

DragIt! क्या है?

DragIt! k3vmcd द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Drag & drop links or selected text to open/search in new tab. Drag right for a new, focused tab. Drag left for a new, unfocused tab."।

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

screenshot

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

crx प्रारूप में DragIt! एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

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

                        Search (default Google): Select text, then drag and drop it to a blank area.
Open link in a new tab: Drag a link and drop it.

Drag to right: Open link/search in focused tab (foreground)
Drag to left: Open link/search in unfocused tab (background)

----------------------
**What's New**
v1.7
- Fixed foreground/background tab opening caused by deprecated Chrome API
- Updated to Manifest V3

v1.6
- Fixed error when search engine formatted incorrectly

v1.5
- SSL searches by default
- Reset options button
- Bugfixes

v1.4
- Bugfixes

v1.3
- Added option to disable DragIt! when text dropped to input field
- Updated options page

v1.2
- Minor bugfix

v1.1
- Change the DragIt! search engine on the options page.                    

एक्सटेंशन की मूल जानकारी

नाम DragIt! DragIt!
ID bnmedfjfiggbacggokfddhocaignedbk
आधिकारिक URL https://chromewebstore.google.com/detail/dragit/bnmedfjfiggbacggokfddhocaignedbk
विवरण Drag & drop links or selected text to open/search in new tab. Drag right for a new, focused tab. Drag left for a new, unfocused tab.
फ़ाइल का आकार 35.5 KB
स्थापना संख्या 2,584
वर्तमान संस्करण 1.7.0
अंतिम अपडेट 2023-12-30
प्रकाशन तिथि 2015-08-22
रेटिंग 4.43/5 कुल 42 रेटिंग्स
डेवलपर k3vmcd
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://gitlab.com/k3vmcd/DragIt
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "DragIt!",
    "version": "1.7.0",
    "manifest_version": 3,
    "description": "Drag & drop links or selected text to open\/search in new tab. Drag right for a new, focused tab. Drag left for a new, unfocused tab.",
    "icons": {
        "128": "icon128.png",
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png"
    },
    "background": {
        "service_worker": "service_worker.js"
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "js": [
                "dragit.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "ftp:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "tabs",
        "storage"
    ]
}