Open in new tab

Open links in new tab for a list of specified domains. Useful for sites such as hackernews

O que é Open in new tab?

Open in new tab é uma extensão do Chrome desenvolvida por Ramkumar K R, e sua principal característica é "Open links in new tab for a list of specified domains. Useful for sites such as hackernews".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Open in new tab

Baixe arquivos de extensão Open in new tab 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

                        Have websites which you always open links in new tab?
With this extension, add the domain and all links in the domain will open in a new tab.

Useful for websites such as hackernews where you would ideally like to open links in new tab.

To add a website to always open in a new tab, just visit the website and click on the extension icon.                    

Informações Básicas da Extensão

Nome Open in new tab Open in new tab
ID cplillmhmcegjlhcbedmgmalbgjpmlkh
URL Oficial https://chromewebstore.google.com/detail/open-in-new-tab/cplillmhmcegjlhcbedmgmalbgjpmlkh
Descrição Open links in new tab for a list of specified domains. Useful for sites such as hackernews
Tamanho do Arquivo 101 KB
Contagem de Instalações 8,400
Versão Atual 0.0.15
Última Atualização 2020-05-21
Data de Publicação 2020-05-21
Classificação 3.56/5 Total de 54 Avaliações
Desenvolvedor Ramkumar K R
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Open in new tab",
    "version": "0.0.15",
    "author": "Ramkumar K R",
    "description": "Open links in new tab for a list of specified domains. Useful for sites such as hackernews",
    "permissions": [
        "storage",
        ""
    ],
    "browser_action": {
        "browser_style": false,
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "tabify.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "options_ui": {
        "page": "options\/options.html"
    },
    "icons": {
        "52": "icon.png"
    }
}