PasteQuery

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

什麼是PasteQuery?

PasteQuery是由Emily Sachs開發的Chrome擴展程式,該擴展的主要功能是“PasteQuery is a simple extension that creates a shortcut or "hot key" for searching the text currently on your clipboard. When you…”。

擴展截圖

screenshot
screenshot

下載PasteQuery擴展crx文件

下載PasteQuery擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 PasteQuery PasteQuery
ID dglpgijbinajkdnmplaegaofkgjmfdbg
官方網址 https://chrome.google.com/webstore/detail/pastequery/dglpgijbinajkdnmplaegaofkgjmfdbg
簡介 PasteQuery is a simple extension that creates a shortcut or "hot key" for searching the text currently on your clipboard. When you…
檔案大小 8.13 KB
安裝次數 64
目前版本 1.0
更新時間 2017-02-09
上架時間 2017-02-09
評分 4.57/5 共 7 次評分
開發者 Emily Sachs
付費類型 free
支援的語言 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"
        }
    }
}