uSuperDrag

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

Vad är uSuperDrag?

uSuperDrag är en Chrome-tillägg utvecklad av iorate, och dess huvudfunktion är "Drag selected text to search for and link to open in a new tab".

Tilläggsskärmbilder

screenshot

Ladda ner uSuperDrag-förlängningens CRX-fil

Ladda ner uSuperDrag-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn uSuperDrag uSuperDrag
ID liikkibjjbncmbpjebipicodoegpcael
Officiell webbadress https://chromewebstore.google.com/detail/usuperdrag/liikkibjjbncmbpjebipicodoegpcael
Beskrivning Drag selected text to search for and link to open in a new tab
Filstorlek 18.29 KB
Antal Installationer 1,260
Aktuell Version 1.2.7
Senast Uppdaterad 2022-05-07
Publiceringsdatum 2018-06-30
Betyg 4.09/5 Totalt 11 Betyg
Utvecklare iorate
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/iorate/uSuperDrag
URL till Sekretesspolicy Sidan https://iorate.github.io/ublacklist/privacy-policy
Stödda Språk 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"
    }
}