Blank Target

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

Was ist Blank Target?

Blank Target ist eine Chrome-Erweiterung, die von revjtanton entwickelt wurde, und ihr Hauptmerkmal ist "Forces all links on a page to open in a new tab.".

Blank Target-Erweiterungs-CRX-Datei herunterladen

Laden Sie Blank Target-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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!                    

Grundlegende Informationen zur Erweiterung

Name Blank Target Blank Target
ID ljcanejgocdkgicjieclckdbmajjfppe
Offizielle URL https://chrome.google.com/webstore/detail/blank-target/ljcanejgocdkgicjieclckdbmajjfppe
Beschreibung Forces all links on a page to open in a new tab.
Dateigröße 3.15 KB
Installationsanzahl 37
Aktuelle Version 1.0
Letztes Update 2014-11-02
Veröffentlichungsdatum 2014-11-02
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler revjtanton
Zahlungsart free
Unterstützte Sprachen 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"
            ]
        }
    ]
}