uSuperDrag

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

Cos'è uSuperDrag?

uSuperDrag è un'estensione di Chrome sviluppata da iorate, e la sua funzione principale è "Drag selected text to search for and link to open in a new tab".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione uSuperDrag

Scarica i file di estensione uSuperDrag in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome uSuperDrag uSuperDrag
ID liikkibjjbncmbpjebipicodoegpcael
URL Ufficiale https://chromewebstore.google.com/detail/usuperdrag/liikkibjjbncmbpjebipicodoegpcael
Descrizione Drag selected text to search for and link to open in a new tab
Dimensione del File 18.29 KB
Conteggio Installazioni 1,260
Versione Corrente 1.2.7
Ultimo Aggiornamento 2022-05-07
Data di Pubblicazione 2018-06-30
Valutazione 4.09/5 Totale 11 Valutazioni
Sviluppatore iorate
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/iorate/uSuperDrag
URL della Pagina della Politica sulla Privacy https://iorate.github.io/ublacklist/privacy-policy
Lingue Supportate 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"
    }
}