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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Emily Sachs และคุณลักษณะหลักของมันคือ "PasteQuery is a simple extension that creates a shortcut or "hot key" for searching the text currently on your clipboard. When you…"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย PasteQuery

ดาวน์โหลดไฟล์ส่วนขยาย 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"
        }
    }
}