Link Control

Manage whether links are opened in the same tab or a new tab

什么是Link Control?

Link Control是由yikeware开发的Chrome扩展程序,该扩展的主要功能是“Manage whether links are opened in the same tab or a new tab”。

扩展截图

screenshot

下载Link Control扩展crx文件

下载Link Control扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        A lightweight extension that puts you in control of how links open.

The extension lets you:

- Always open links in the same tab
- Always open links in a new tab
- Choose the behaviour for specific websites

Useful for stopping the behaviour of sites such as eBay, Etsy, Temu and others that open a new tab every time you click on a link, or it can be used to add that behaviour for other sites.                    

扩展基本信息

名称 Link Control Link Control
ID olcpmlhnomiabbndnfplobojnhjljapm
官方URL https://chromewebstore.google.com/detail/link-control/olcpmlhnomiabbndnfplobojnhjljapm
简介 Manage whether links are opened in the same tab or a new tab
文件大小 12.23 KB
安装次数 1,015
当前版本 1.1
更新时间 2023-12-21
上架时间 2020-08-04
评分 4.21/5 共14次评分
开发者 yikeware
电子邮箱 [email protected]
付费类型 free
支持的语言 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Link Control",
    "description": "Manage whether links are opened in the same tab or a new tab",
    "version": "1.1",
    "manifest_version": 2,
    "permissions": [
        "storage",
        "tabs"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": "linkcontrol16.png",
        "show_matches": "*:\/\/*\/*"
    },
    "icons": {
        "16": "linkcontrol16.png",
        "48": "linkcontrol48.png",
        "128": "linkcontrol128.png"
    }
}