Link in Current Tab

Force all links to be opened in current tab instead of the new one

什麼是Link in Current Tab?

Link in Current Tab是由SAGAN開發的Chrome擴展程式,該擴展的主要功能是“Force all links to be opened in current tab instead of the new one”。

擴展截圖

screenshot
screenshot

下載Link in Current Tab擴展crx文件

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

擴展使用說明

                        This extension forces all links to be opened in the current tab. It does it in a way that should work in ALL websites, even if the sites that load contents dynamically via AJAX.

Note You can still open a link in the new tab at any time, by clicking a link when holding the "Ctrl" key, or using the middle mouse button to open a link.

无视页面里 a 链接的 target="_blank" 属性, 强制所有链接在当前 tab 页打开.                    

擴展基本資訊

名稱 Link in Current Tab Link in Current Tab
ID cbkcdebbfbegnmbephalggnchfebihbl
官方網址 https://chromewebstore.google.com/detail/link-in-current-tab/cbkcdebbfbegnmbephalggnchfebihbl
簡介 Force all links to be opened in current tab instead of the new one
檔案大小 3.46 KB
安裝次數 194
目前版本 1.0.11
更新時間 2023-12-21
上架時間 2018-06-18
評分 5.00/5 共 3 次評分
開發者 SAGAN
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/sagan/chrome-extension-link-in-current-tab
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Link in Current Tab",
    "description": "Force all links to be opened in current tab instead of the new one",
    "version": "1.0.11",
    "author": "Jacques De SAGAN",
    "manifest_version": 2,
    "permissions": [],
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ]
}