uSuperDrag

Drag selected text to search for and link to open in a new tab

uSuperDrag क्या है?

uSuperDrag iorate द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Drag selected text to search for and link to open in a new tab"।

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

screenshot

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

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

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

                        This Chrome extension provides "Super Drag" for selected text and link. If you drag-and-drop selected text or link, it will be searched for by the specified search engine (default: Google) or opened in a new tab, respectively.

In addition, this extension enables us to drag link text horizontally and select it, just like Presto Opera.                    

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

नाम uSuperDrag uSuperDrag
ID liikkibjjbncmbpjebipicodoegpcael
आधिकारिक URL https://chromewebstore.google.com/detail/usuperdrag/liikkibjjbncmbpjebipicodoegpcael
विवरण Drag selected text to search for and link to open in a new tab
फ़ाइल का आकार 18.29 KB
स्थापना संख्या 1,260
वर्तमान संस्करण 1.2.7
अंतिम अपडेट 2022-05-07
प्रकाशन तिथि 2018-06-30
रेटिंग 4.09/5 कुल 11 रेटिंग्स
डेवलपर iorate
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/iorate/uSuperDrag
गोपनीयता नीति पृष्ठ URL https://iorate.github.io/ublacklist/privacy-policy
समर्थित भाषाएँ en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "default_locale": "en",
    "name": "__MSG_extensionName__",
    "description": "__MSG_extensionDescription__",
    "version": "1.2.7",
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "eventpage.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "options_ui": {
        "page": "options.html"
    }
}