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
官方網址 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"
    }
}