Blank Target
Forces all links on a page to open in a new tab.
什么是Blank Target?
Blank Target是由revjtanton开发的Chrome扩展程序,该扩展的主要功能是“Forces all links on a page to open in a new tab.”。
下载Blank Target扩展crx文件
下载Blank Target扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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!
扩展基本信息
名称 | ![]() |
ID | ljcanejgocdkgicjieclckdbmajjfppe |
官方URL | https://chrome.google.com/webstore/detail/blank-target/ljcanejgocdkgicjieclckdbmajjfppe |
简介 | Forces all links on a page to open in a new tab. |
文件大小 | 3.15 KB |
安装次数 | 37 |
当前版本 | 1.0 |
更新时间 | 2014-11-02 |
上架时间 | 2014-11-02 |
评分 | 5.00/5 共1次评分 |
开发者 | revjtanton |
付费类型 | free |
支持的语言 | 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" ] } ] } |