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