Blank Target

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

Qu'est-ce que Blank Target ?

Blank Target est une extension Chrome développée par revjtanton, et sa fonction principale est "Forces all links on a page to open in a new tab.".

Télécharger le fichier CRX de l'extension Blank Target

Téléchargez les fichiers d'extension Blank Target 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

                        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!                    

Informations de Base sur l'Extension

Nom Blank Target Blank Target
ID ljcanejgocdkgicjieclckdbmajjfppe
URL Officiel https://chrome.google.com/webstore/detail/blank-target/ljcanejgocdkgicjieclckdbmajjfppe
Description Forces all links on a page to open in a new tab.
Taille du Fichier 3.15 KB
Nombre d'Installations 37
Version Actuelle 1.0
Dernière Mise à Jour 2014-11-02
Date de Publication 2014-11-02
Évaluation 5.00/5 Total 1 Évaluations
Développeur revjtanton
Type de Paiement free
Langues Prises en Charge 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"
            ]
        }
    ]
}