Open Links in New Tab

This extension allows you to decide which websites you want to automatically open in a new tab.

Open Links in New Tabとは何ですか?

Open Links in New TabはAran Sandhuによって開発されたChromeの拡張機能で、その主な機能は「This extension allows you to decide which websites you want to automatically open in a new tab.」です。

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

screenshot
screenshot

Open Links in New Tab拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        This extension will allow you to create a list of websites so that whenever you click a link on one of those websites, the link will automatically open in a new tab. Perfect for websites like Google, Reddit, and YouTube.                    

拡張機能の基本情報

名前 Open Links in New Tab Open Links in New Tab
ID bbccifaebcaangidpmojlooininapefb
公式URL https://chrome.google.com/webstore/detail/open-links-in-new-tab/bbccifaebcaangidpmojlooininapefb
説明 This extension allows you to decide which websites you want to automatically open in a new tab.
ファイルサイズ 111 KB
インストール数 1,000
現在のバージョン 1.05
最終更新日 2020-08-18
公開日 2018-08-07
評価 2.11/5 合計 9 レビュー
開発者 Aran Sandhu
Eメール [email protected]
支払い方法 free
対応言語 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Open Links in New Tab",
    "description": "This extension allows you to decide which websites you want to automatically open in a new tab.",
    "version": "1.05",
    "author": "Aran Sandhu",
    "browser_action": {
        "default_icon": "icon16.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "jquery-3.3.1.js",
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "js": [
                "jquery-3.3.1.js",
                "util.js",
                "content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage",
        "tabs",
        "*:\/\/*\/*"
    ]
}