Open in new tab

Open links in new tab for a list of specified domains. Useful for sites such as hackernews

Open in new tabとは何ですか?

Open in new tabはRamkumar K Rによって開発されたChromeの拡張機能で、その主な機能は「Open links in new tab for a list of specified domains. Useful for sites such as hackernews」です。

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

screenshot
screenshot

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

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

拡張機能の使用方法

                        Have websites which you always open links in new tab?
With this extension, add the domain and all links in the domain will open in a new tab.

Useful for websites such as hackernews where you would ideally like to open links in new tab.

To add a website to always open in a new tab, just visit the website and click on the extension icon.                    

拡張機能の基本情報

名前 Open in new tab Open in new tab
ID cplillmhmcegjlhcbedmgmalbgjpmlkh
公式URL https://chromewebstore.google.com/detail/open-in-new-tab/cplillmhmcegjlhcbedmgmalbgjpmlkh
説明 Open links in new tab for a list of specified domains. Useful for sites such as hackernews
ファイルサイズ 101 KB
インストール数 8,400
現在のバージョン 0.0.15
最終更新日 2020-05-21
公開日 2020-05-21
評価 3.56/5 合計 54 レビュー
開発者 Ramkumar K R
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Open in new tab",
    "version": "0.0.15",
    "author": "Ramkumar K R",
    "description": "Open links in new tab for a list of specified domains. Useful for sites such as hackernews",
    "permissions": [
        "storage",
        ""
    ],
    "browser_action": {
        "browser_style": false,
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "tabify.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "options_ui": {
        "page": "options\/options.html"
    },
    "icons": {
        "52": "icon.png"
    }
}