Open link in new tab

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

Cos'è Open link in new tab?

Open link in new tab è un'estensione di Chrome sviluppata da Naren, e la sua funzione principale è "This extension forces links in a page to open in new tab.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Open link in new tab

Scarica i file di estensione Open link in new tab in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Open link in new tab Open link in new tab
ID lahhghmllilhdphkncabilobmcokgfag
URL Ufficiale https://chrome.google.com/webstore/detail/open-link-in-new-tab/lahhghmllilhdphkncabilobmcokgfag
Descrizione This extension forces links in a page to open in new tab.
Dimensione del File 86.17 KB
Conteggio Installazioni 4,000
Versione Corrente 1.0.7
Ultimo Aggiornamento 2015-03-05
Data di Pubblicazione 2015-03-05
Valutazione 3.24/5 Totale 42 Valutazioni
Sviluppatore Naren
Tipo di Pagamento free
Sito Web dell'Estensione http://twitter.com/narens
Lingue Supportate 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"
            ]
        }
    ]
}