PasteQuery

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

What is PasteQuery?

PasteQuery is a Chrome extension developed by Emily Sachs, and its main feature is "PasteQuery is a simple extension that creates a shortcut or "hot key" for searching the text currently on your clipboard. When you…".

Extension Screenshots

screenshot
screenshot

Download PasteQuery Extension CRX File

Download PasteQuery extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name PasteQuery PasteQuery
ID dglpgijbinajkdnmplaegaofkgjmfdbg
Official URL https://chrome.google.com/webstore/detail/pastequery/dglpgijbinajkdnmplaegaofkgjmfdbg
Description PasteQuery is a simple extension that creates a shortcut or "hot key" for searching the text currently on your clipboard. When you…
File Size 8.13 KB
Installation Count 64
Current Version 1.0
Last Updated 2017-02-09
Publish Date 2017-02-09
Rating 4.57/5 Total 7 Ratings
Developer Emily Sachs
Payment Type free
Supported Languages 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"
        }
    }
}