PasteQuery

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

Wat is PasteQuery?

PasteQuery is een Chrome-extensie ontwikkeld door Emily Sachs, en de belangrijkste functie is "PasteQuery is a simple extension that creates a shortcut or "hot key" for searching the text currently on your clipboard. When you…".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie PasteQuery

Download PasteQuery-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam PasteQuery PasteQuery
ID dglpgijbinajkdnmplaegaofkgjmfdbg
Officiële URL https://chrome.google.com/webstore/detail/pastequery/dglpgijbinajkdnmplaegaofkgjmfdbg
Beschrijving PasteQuery is a simple extension that creates a shortcut or "hot key" for searching the text currently on your clipboard. When you…
Bestandsgrootte 8.13 KB
Aantal Installaties 64
Huidige Versie 1.0
Laatst Bijgewerkt 2017-02-09
Publicatiedatum 2017-02-09
Beoordeling 4.57/5 Totaal 7 Beoordelingen
Ontwikkelaar Emily Sachs
Betalingswijze free
Ondersteunde Talen 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"
        }
    }
}