New Tab Always

This extension gives you the option for all links in a tab to open in a new tab. When enabled (shown by a green icon), every link…

O que é New Tab Always?

New Tab Always é uma extensão do Chrome desenvolvida por Unknown, e sua principal característica é "This extension gives you the option for all links in a tab to open in a new tab. When enabled (shown by a green icon), every link…".

Baixar o arquivo CRX da Extensão New Tab Always

Baixe arquivos de extensão New Tab Always 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

                        This extension gives you the option for all links in a tab to open in a new tab. When enabled (shown by a green icon), every link will open in a new tab. When disabled (black icon), links will open as they would by default.                    

Informações Básicas da Extensão

Nome New Tab Always New Tab Always
ID khcoicdljjkpkhoinjdglndicbibmlch
URL Oficial https://chromewebstore.google.com/detail/new-tab-always/khcoicdljjkpkhoinjdglndicbibmlch
Descrição This extension gives you the option for all links in a tab to open in a new tab. When enabled (shown by a green icon), every link…
Tamanho do Arquivo 113 KB
Contagem de Instalações 65
Versão Atual 2.1
Última Atualização 2018-06-09
Data de Publicação 2018-06-09
Desenvolvedor Unknown
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "New Tab Always",
    "version": "2.1",
    "icons": {
        "16": "icon-16.png",
        "32": "icon-32.png",
        "128": "icon-128.png",
        "256": "icon-256.png",
        "512": "icon-512.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.1.1.min.js",
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "16": "icon-16.png",
            "32": "icon-32.png",
            "128": "icon-128.png",
            "256": "icon-256.png",
            "512": "icon-512.png"
        }
    },
    "permissions": [
        "storage",
        "webNavigation",
        "tabs"
    ],
    "options_page": "options.html"
}