Link Control

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

Link Control là gì?

Link Control là một tiện ích mở rộng Chrome được phát triển bởi yikeware, và tính năng chính của nó là "Manage whether links are opened in the same tab or a new tab".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Link Control

Tải xuống các tệp mở rộng Link Control dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Link Control Link Control
ID olcpmlhnomiabbndnfplobojnhjljapm
URL Chính Thức https://chromewebstore.google.com/detail/link-control/olcpmlhnomiabbndnfplobojnhjljapm
Mô tả Manage whether links are opened in the same tab or a new tab
Kích Thước Tệp 12.23 KB
Số Lần Cài Đặt 1,015
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2023-12-21
Ngày Phát Hành 2020-08-04
Đánh Giá 4.21/5 Tổng số 14 Đánh Giá
Nhà Phát Triển yikeware
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}