Open link in new tab

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

Qu'est-ce que Open link in new tab ?

Open link in new tab est une extension Chrome développée par Naren, et sa fonction principale est "This extension forces links in a page to open in new tab.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Open link in new tab

Téléchargez les fichiers d'extension Open link in new tab au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Open link in new tab Open link in new tab
ID lahhghmllilhdphkncabilobmcokgfag
URL Officiel https://chrome.google.com/webstore/detail/open-link-in-new-tab/lahhghmllilhdphkncabilobmcokgfag
Description This extension forces links in a page to open in new tab.
Taille du Fichier 86.17 KB
Nombre d'Installations 4,000
Version Actuelle 1.0.7
Dernière Mise à Jour 2015-03-05
Date de Publication 2015-03-05
Évaluation 3.24/5 Total 42 Évaluations
Développeur Naren
Type de Paiement free
Site Web de l'Extension http://twitter.com/narens
Langues Prises en Charge 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"
            ]
        }
    ]
}