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
官方URL 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"
        }
    }
}