Open link in new tab

This extension forces links in a page to open in new tab.

O que é Open link in new tab?

Open link in new tab é uma extensão do Chrome desenvolvida por Naren, e sua principal característica é "This extension forces links in a page to open in new tab.".

Capturas de Tela da Extensão

screenshot

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

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

                        This extension will help you to force links in pages to be open in new tab. You can configure the urls in the options..

Change log:

Version 1.0.7:

Fixed a bug that prevented users from saving the options properly. Thanks to @joelw135                    

Informações Básicas da Extensão

Nome Open link in new tab Open link in new tab
ID lahhghmllilhdphkncabilobmcokgfag
URL Oficial https://chrome.google.com/webstore/detail/open-link-in-new-tab/lahhghmllilhdphkncabilobmcokgfag
Descrição This extension forces links in a page to open in new tab.
Tamanho do Arquivo 86.17 KB
Contagem de Instalações 4,000
Versão Atual 1.0.7
Última Atualização 2015-03-05
Data de Publicação 2015-03-05
Classificação 3.24/5 Total de 42 Avaliações
Desenvolvedor Naren
Tipo de Pagamento free
Site da Extensão http://twitter.com/narens
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Open link in new tab",
    "version": "1.0.7",
    "manifest_version": 2,
    "description": "This extension forces links in a page to open in new tab.",
    "author": "Narendran",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "homepage_url": "http:\/\/twitter.com\/narens",
    "permissions": [
        "tabs",
        "storage"
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "options_page": "options\/index.html",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/jquery.min.js",
                "js\/inject.js"
            ]
        }
    ]
}