Search Queue
A queue for searching the web!
Что такое Search Queue?
Search Queue - это расширение Chrome, разработанное isaiahnields, и его основная функция - "A queue for searching the web!".
Снимки экрана расширения
Скачать файл CRX расширения Search Queue
Скачайте файлы расширений Search Queue в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
                        Search Queue adds a queue to search! This extension allows the user to queue up multiple searches and quickly make them.                     Основная информация о расширении
| Название |   |  
| ID | ipcifbklbbpchinpdfcfbhpghnknioff | 
| Официальный URL | https://chromewebstore.google.com/detail/search-queue/ipcifbklbbpchinpdfcfbhpghnknioff | 
| Описание | A queue for searching the web! | 
| Размер файла | 60.39 KB | 
| Количество установок | 37 | 
| Текущая Версия | 2.18 | 
| Последнее Обновление | 2018-08-08 | 
| Дата публикации | 2018-08-08 | 
| Рейтинг | 5.00/5 Всего 3 оценок | 
| Разработчик | isaiahnields | 
| Электронная почта | [email protected] | 
| Тип оплаты | free | 
| Официальный сайт расширения | https://github.com/isaiahnields/search-queue | 
| URL страницы помощи | https://github.com/isaiahnields/SearchQueue/issues | 
| Поддерживаемые языки | en | 
| manifest.json | |
 {
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Search Queue",
    "version": "2.18",
    "icons": {
        "128": "resources\/images\/icon_128.png"
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "description": "A queue for searching the web!",
    "background": {
        "scripts": [
            "resources\/js\/background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "resources\/images\/icon.png"
    },
    "commands": {
        "next": {
            "suggested_key": {
                "default": "Alt+Up",
                "windows": "Alt+Up",
                "mac": "Alt+Up"
            },
            "description": "Next",
            "global": false
        },
        "previous": {
            "suggested_key": {
                "default": "Alt+Down",
                "windows": "Alt+Down",
                "mac": "Alt+Down"
            },
            "description": "Previous",
            "global": false
        }
    },
    "permissions": [
        "storage",
        "notifications",
        "tabs",
        "background",
        "contextMenus"
    ]
}  |  |