Blank Target
Forces all links on a page to open in a new tab.
What is Blank Target?
Blank Target is a Chrome extension developed by revjtanton, and its main feature is "Forces all links on a page to open in a new tab.".
Download Blank Target Extension CRX File
Download Blank Target extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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!
Extension Basic Information
Name | ![]() |
ID | ljcanejgocdkgicjieclckdbmajjfppe |
Official URL | https://chrome.google.com/webstore/detail/blank-target/ljcanejgocdkgicjieclckdbmajjfppe |
Description | Forces all links on a page to open in a new tab. |
File Size | 3.15 KB |
Installation Count | 37 |
Current Version | 1.0 |
Last Updated | 2014-11-02 |
Publish Date | 2014-11-02 |
Rating | 5.00/5 Total 1 Ratings |
Developer | revjtanton |
Payment Type | free |
Supported Languages | 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" ] } ] } |