Open Links in New Tab

Ensures all links open in a new tab.

什麼是Open Links in New Tab?

Open Links in New Tab是由sassnathan開發的Chrome擴展程式,該擴展的主要功能是“Ensures all links open in a new tab.”。

擴展截圖

screenshot

下載Open Links in New Tab擴展crx文件

下載Open Links in New Tab擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Why Use Open Links in New Tab?

Navigating the web can involve clicking through a myriad of links. Open Links in New Tab simplifies your browsing experience by automatically opening all links in new tabs. No more right-clicking or using keyboard shortcuts; let this extension do the work for you!

Features:

🌐 Universal Compatibility: Works on all websites.
🛠️ Simple Interface: Just one checkbox to enable or disable the feature.
🟢 Status Indicator: A badge on the extension icon shows whether the feature is currently ON or OFF.
How to Use:

Install the Extension: Add it to Chrome from the Chrome Web Store.
Click the Icon: Find the extension icon in your toolbar and click it.
Enable or Disable: Use the popup checkbox to turn the feature ON or OFF.                    

擴展基本資訊

名稱 Open Links in New Tab Open Links in New Tab
ID facnjbdmmbddmojfmpfknnkihjcikgon
官方網址 https://chromewebstore.google.com/detail/open-links-in-new-tab/facnjbdmmbddmojfmpfknnkihjcikgon
簡介 Ensures all links open in a new tab.
檔案大小 5.34 KB
安裝次數 107
目前版本 1.0
更新時間 2023-08-29
上架時間 2023-08-28
評分 2.33/5 共 3 次評分
開發者 sassnathan
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/Nathan-S19/OpenLinksInNewTab-extension
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Open Links in New Tab",
    "version": "1.0",
    "description": "Ensures all links open in a new tab.",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "action": {
        "default_popup": "popup.html"
    }
}