Blank Target
Forces all links on a page to open in a new tab.
O que é Blank Target?
Blank Target é uma extensão do Chrome desenvolvida por revjtanton, e sua principal característica é "Forces all links on a page to open in a new tab.".
Baixar o arquivo CRX da Extensão Blank Target
Baixe arquivos de extensão Blank Target no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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!
Informações Básicas da Extensão
Nome | ![]() |
ID | ljcanejgocdkgicjieclckdbmajjfppe |
URL Oficial | https://chrome.google.com/webstore/detail/blank-target/ljcanejgocdkgicjieclckdbmajjfppe |
Descrição | Forces all links on a page to open in a new tab. |
Tamanho do Arquivo | 3.15 KB |
Contagem de Instalações | 37 |
Versão Atual | 1.0 |
Última Atualização | 2014-11-02 |
Data de Publicação | 2014-11-02 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | revjtanton |
Tipo de Pagamento | free |
Idiomas Suportados | 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" ] } ] } |