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 |
官方網址 | 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" ] } ] } |