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
官方URL 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
        }
    ]
}