Blank Target
Forces all links on a page to open in a new tab.
Cos'è Blank Target?
Blank Target è un'estensione di Chrome sviluppata da revjtanton, e la sua funzione principale è "Forces all links on a page to open in a new tab.".
Scarica il file CRX dell'estensione Blank Target
Scarica i file di estensione Blank Target in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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!
Informazioni di Base sull'Estensione
Nome | ![]() |
ID | ljcanejgocdkgicjieclckdbmajjfppe |
URL Ufficiale | https://chrome.google.com/webstore/detail/blank-target/ljcanejgocdkgicjieclckdbmajjfppe |
Descrizione | Forces all links on a page to open in a new tab. |
Dimensione del File | 3.15 KB |
Conteggio Installazioni | 37 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2014-11-02 |
Data di Pubblicazione | 2014-11-02 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | revjtanton |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } ] } |