Auto Open Links

Auto Open Links allows you to open the first n links from google in new tabs with a shortcut. Examples: ctrl + shift + 1 : will…

O que é Auto Open Links?

Auto Open Links é uma extensão do Chrome desenvolvida por vvveleva, e sua principal característica é "Auto Open Links allows you to open the first n links from google in new tabs with a shortcut. Examples: ctrl + shift + 1 : will…".

Baixar o arquivo CRX da Extensão Auto Open Links

Baixe arquivos de extensão Auto Open Links 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

                        Auto Open Links allows you to open the first n links from google in new tabs with a shortcut.

Examples:

ctrl + shift + 1 : will open the first link on google in a new tab

ctrl + shift + 7 : will open the first 7 links on google in a new tab

If you run into any bugs, please report them at [email protected]. Thanks!                    

Informações Básicas da Extensão

Nome Auto Open Links Auto Open Links
ID coiapeoijgdcanenjddgdgcepejabljl
URL Oficial https://chrome.google.com/webstore/detail/auto-open-links/coiapeoijgdcanenjddgdgcepejabljl
Descrição Auto Open Links allows you to open the first n links from google in new tabs with a shortcut. Examples: ctrl + shift + 1 : will…
Tamanho do Arquivo 39.57 KB
Contagem de Instalações 154
Versão Atual 1.1
Última Atualização 2015-09-12
Data de Publicação 2015-09-12
Classificação 3.33/5 Total de 6 Avaliações
Desenvolvedor vvveleva
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Auto Open Links",
    "version": "1.1",
    "permissions": [
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.google.com\/*"
            ],
            "js": [
                "auto_open_links.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "auto_open_links.js"
    ]
}