Search Queue

A queue for searching the web!

O que é Search Queue?

Search Queue é uma extensão do Chrome desenvolvida por isaiahnields, e sua principal característica é "A queue for searching the web!".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Search Queue

Baixe arquivos de extensão Search Queue no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        Search Queue adds a queue to search! This extension allows the user to queue up multiple searches and quickly make them.                    

Informações Básicas da Extensão

Nome Search Queue Search Queue
ID ipcifbklbbpchinpdfcfbhpghnknioff
URL Oficial https://chromewebstore.google.com/detail/search-queue/ipcifbklbbpchinpdfcfbhpghnknioff
Descrição A queue for searching the web!
Tamanho do Arquivo 60.39 KB
Contagem de Instalações 37
Versão Atual 2.18
Última Atualização 2018-08-08
Data de Publicação 2018-08-08
Classificação 5.00/5 Total de 3 Avaliações
Desenvolvedor isaiahnields
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/isaiahnields/search-queue
URL da Página de Ajuda https://github.com/isaiahnields/SearchQueue/issues
Idiomas Suportados 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"
    ]
}