PasteQuery

PasteQuery is a simple extension that creates a shortcut or "hot key" for searching the text currently on your clipboard. When you…

O que é PasteQuery?

PasteQuery é uma extensão do Chrome desenvolvida por Emily Sachs, e sua principal característica é "PasteQuery is a simple extension that creates a shortcut or "hot key" for searching the text currently on your clipboard. When you…".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão PasteQuery

Baixe arquivos de extensão PasteQuery 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

                        PasteQuery is a simple extension that creates a shortcut or "hot key" for searching the text currently on your clipboard. When you press Ctrl+Shift+E (or Command+Shift+E on Mac) PasteQuery opens the last text you copied as a Google search in a new tab. Upon first install you must either open a new content page or refresh your current page to initiate PasteQuery.                    

Informações Básicas da Extensão

Nome PasteQuery PasteQuery
ID dglpgijbinajkdnmplaegaofkgjmfdbg
URL Oficial https://chrome.google.com/webstore/detail/pastequery/dglpgijbinajkdnmplaegaofkgjmfdbg
Descrição PasteQuery is a simple extension that creates a shortcut or "hot key" for searching the text currently on your clipboard. When you…
Tamanho do Arquivo 8.13 KB
Contagem de Instalações 64
Versão Atual 1.0
Última Atualização 2017-02-09
Data de Publicação 2017-02-09
Classificação 4.57/5 Total de 7 Avaliações
Desenvolvedor Emily Sachs
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "PasteQuery",
    "author": "Emily Sachs",
    "version": "1.0",
    "icons": {
        "16": "PasteQuery16.png",
        "48": "PasteQuery48.png",
        "128": "PasteQuery.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "paste.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "query.js"
        ],
        "persistent": false
    },
    "permissions": [
        "clipboardRead",
        "clipboardWrite"
    ],
    "commands": {
        "paste-tab": {
            "suggested_key": {
                "default": "Ctrl+Shift+E",
                "mac": "Command+Shift+E"
            },
            "description": "Search from clipboard"
        }
    }
}