uSuperDrag

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

O que é uSuperDrag?

uSuperDrag é uma extensão do Chrome desenvolvida por iorate, e sua principal característica é "Drag selected text to search for and link to open in a new tab".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão uSuperDrag

Baixe arquivos de extensão uSuperDrag no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome uSuperDrag uSuperDrag
ID liikkibjjbncmbpjebipicodoegpcael
URL Oficial https://chromewebstore.google.com/detail/usuperdrag/liikkibjjbncmbpjebipicodoegpcael
Descrição Drag selected text to search for and link to open in a new tab
Tamanho do Arquivo 18.29 KB
Contagem de Instalações 1,260
Versão Atual 1.2.7
Última Atualização 2022-05-07
Data de Publicação 2018-06-30
Classificação 4.09/5 Total de 11 Avaliações
Desenvolvedor iorate
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/iorate/uSuperDrag
URL da Página de Política de Privacidade https://iorate.github.io/ublacklist/privacy-policy
Idiomas Suportados 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"
    }
}