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!                    

拡張機能の基本情報

名前 Blank Target Blank Target
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"
            ]
        }
    ]
}