Blank Target
Forces all links on a page to open in a new tab.
Wat is Blank Target?
Blank Target is een Chrome-extensie ontwikkeld door revjtanton, en de belangrijkste functie is "Forces all links on a page to open in a new tab.".
Download het CRX-bestand van de extensie Blank Target
Download Blank Target-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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!
Basisinformatie over de Extensie
Naam | ![]() |
ID | ljcanejgocdkgicjieclckdbmajjfppe |
Officiële URL | https://chrome.google.com/webstore/detail/blank-target/ljcanejgocdkgicjieclckdbmajjfppe |
Beschrijving | Forces all links on a page to open in a new tab. |
Bestandsgrootte | 3.15 KB |
Aantal Installaties | 37 |
Huidige Versie | 1.0 |
Laatst Bijgewerkt | 2014-11-02 |
Publicatiedatum | 2014-11-02 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | revjtanton |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } ] } |