Blank Target

Forces all links on a page to open in a new tab.

Co je Blank Target?

Blank Target je rozšíření Chrome vyvinuté revjtanton, a jeho hlavní funkcí je „Forces all links on a page to open in a new tab.“.

Stáhnout soubor CRX rozšíření Blank Target

Stáhněte si soubory rozšíření Blank Target 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í

                        Do you get annoyed when links on a page open in the same tab?  Do you ever wish all links open in a new tab?  Well if you answered yes to those questions this extention is for you.  

This extension is very simple.  All it does is append target="_blank" to all links on a page.  That's it.  It's not at all complex, and on some pages the js will overrite this and it won't work.  For the most part it does the job though.  

I've been using this for a while on my own since I prefer all links to open in new tabs.  Now I'm putting it out there for everyone to use.  Enjoy!                    

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

Název Blank Target Blank Target
ID ljcanejgocdkgicjieclckdbmajjfppe
Oficiální URL https://chrome.google.com/webstore/detail/blank-target/ljcanejgocdkgicjieclckdbmajjfppe
Popis Forces all links on a page to open in a new tab.
Velikost souboru 3.15 KB
Počet instalací 37
Aktuální Verze 1.0
Poslední Aktualizace 2014-11-02
Datum Vydání 2014-11-02
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář revjtanton
Typ Platby free
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Blank Target",
    "description": "Forces all links on a page to open in a new tab.",
    "version": "1.0",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "blank.js"
            ]
        }
    ]
}