uSuperDrag

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

Co je uSuperDrag?

uSuperDrag je rozšíření Chrome vyvinuté iorate, a jeho hlavní funkcí je „Drag selected text to search for and link to open in a new tab“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření uSuperDrag

Stáhněte si soubory rozšíření uSuperDrag ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název uSuperDrag uSuperDrag
ID liikkibjjbncmbpjebipicodoegpcael
Oficiální URL https://chromewebstore.google.com/detail/usuperdrag/liikkibjjbncmbpjebipicodoegpcael
Popis Drag selected text to search for and link to open in a new tab
Velikost souboru 18.29 KB
Počet instalací 1,260
Aktuální Verze 1.2.7
Poslední Aktualizace 2022-05-07
Datum Vydání 2018-06-30
Hodnocení 4.09/5 Celkem 11 Hodnocení
Vývojář iorate
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/iorate/uSuperDrag
URL Stránky Zásad Ochrany Soukromí https://iorate.github.io/ublacklist/privacy-policy
Podporované Jazyky 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"
    }
}