Open link in new tab

This extension forces links in a page to open in new tab.

Open link in new tabとは何ですか?

Open link in new tabはNarenによって開発されたChromeの拡張機能で、その主な機能は「This extension forces links in a page to open in new tab.」です。

拡張機能のスクリーンショット

screenshot

Open link in new tab拡張機能のCRXファイルをダウンロード

Open link in new tab拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        This extension will help you to force links in pages to be open in new tab. You can configure the urls in the options..

Change log:

Version 1.0.7:

Fixed a bug that prevented users from saving the options properly. Thanks to @joelw135                    

拡張機能の基本情報

名前 Open link in new tab Open link in new tab
ID lahhghmllilhdphkncabilobmcokgfag
公式URL https://chrome.google.com/webstore/detail/open-link-in-new-tab/lahhghmllilhdphkncabilobmcokgfag
説明 This extension forces links in a page to open in new tab.
ファイルサイズ 86.17 KB
インストール数 4,000
現在のバージョン 1.0.7
最終更新日 2015-03-05
公開日 2015-03-05
評価 3.24/5 合計 42 レビュー
開発者 Naren
支払い方法 free
拡張機能のウェブサイト http://twitter.com/narens
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Open link in new tab",
    "version": "1.0.7",
    "manifest_version": 2,
    "description": "This extension forces links in a page to open in new tab.",
    "author": "Narendran",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "homepage_url": "http:\/\/twitter.com\/narens",
    "permissions": [
        "tabs",
        "storage"
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "options_page": "options\/index.html",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/jquery.min.js",
                "js\/inject.js"
            ]
        }
    ]
}