Open link in new tab

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

Co je Open link in new tab?

Open link in new tab je rozšíření Chrome vyvinuté Naren, a jeho hlavní funkcí je „This extension forces links in a page to open in new tab.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Open link in new tab

Stáhněte si soubory rozšíření Open link in new tab ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Open link in new tab Open link in new tab
ID lahhghmllilhdphkncabilobmcokgfag
Oficiální URL https://chrome.google.com/webstore/detail/open-link-in-new-tab/lahhghmllilhdphkncabilobmcokgfag
Popis This extension forces links in a page to open in new tab.
Velikost souboru 86.17 KB
Počet instalací 4,000
Aktuální Verze 1.0.7
Poslední Aktualizace 2015-03-05
Datum Vydání 2015-03-05
Hodnocení 3.24/5 Celkem 42 Hodnocení
Vývojář Naren
Typ Platby free
Webové stránky Rozšíření http://twitter.com/narens
Podporované Jazyky 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"
            ]
        }
    ]
}