Blank Target
Forces all links on a page to open in a new tab.
¿Qué es Blank Target?
Blank Target es una extensión de Chrome desarrollada por revjtanton, y su función principal es "Forces all links on a page to open in a new tab.".
Descargar Archivo CRX de la Extensión Blank Target
Descarga archivos de extensión Blank Target en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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!
Información Básica de la Extensión
Nombre | ![]() |
ID | ljcanejgocdkgicjieclckdbmajjfppe |
URL Oficial | https://chrome.google.com/webstore/detail/blank-target/ljcanejgocdkgicjieclckdbmajjfppe |
Descripción | Forces all links on a page to open in a new tab. |
Tamaño del Archivo | 3.15 KB |
Cantidad de Instalaciones | 37 |
Versión Actual | 1.0 |
Última Actualización | 2014-11-02 |
Fecha de Publicación | 2014-11-02 |
Calificación | 5.00/5 Total de 1 Calificaciones |
Desarrollador | revjtanton |
Tipo de Pago | free |
Idiomas Soportados | 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" ] } ] } |