Blank Target

Forces all links on a page to open in a new tab.

Blank Target là gì?

Blank Target là một tiện ích mở rộng Chrome được phát triển bởi revjtanton, và tính năng chính của nó là "Forces all links on a page to open in a new tab.".

Tải xuống tệp CRX của tiện ích mở rộng Blank Target

Tải xuống các tệp mở rộng Blank Target dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Blank Target Blank Target
ID ljcanejgocdkgicjieclckdbmajjfppe
URL Chính Thức https://chrome.google.com/webstore/detail/blank-target/ljcanejgocdkgicjieclckdbmajjfppe
Mô tả Forces all links on a page to open in a new tab.
Kích Thước Tệp 3.15 KB
Số Lần Cài Đặt 37
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2014-11-02
Ngày Phát Hành 2014-11-02
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển revjtanton
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}