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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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