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
官方網址 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
電子郵箱 [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",
        "*:\/\/*\/*"
    ]
}