PasteQuery

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

Cos'è PasteQuery?

PasteQuery è un'estensione di Chrome sviluppata da Emily Sachs, e la sua funzione principale è "PasteQuery is a simple extension that creates a shortcut or "hot key" for searching the text currently on your clipboard. When you…".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione PasteQuery

Scarica i file di estensione PasteQuery 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

                        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.                    

Informazioni di Base sull'Estensione

Nome PasteQuery PasteQuery
ID dglpgijbinajkdnmplaegaofkgjmfdbg
URL Ufficiale https://chrome.google.com/webstore/detail/pastequery/dglpgijbinajkdnmplaegaofkgjmfdbg
Descrizione PasteQuery is a simple extension that creates a shortcut or "hot key" for searching the text currently on your clipboard. When you…
Dimensione del File 8.13 KB
Conteggio Installazioni 64
Versione Corrente 1.0
Ultimo Aggiornamento 2017-02-09
Data di Pubblicazione 2017-02-09
Valutazione 4.57/5 Totale 7 Valutazioni
Sviluppatore Emily Sachs
Tipo di Pagamento free
Lingue Supportate 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"
        }
    }
}