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"
        }
    }
}