Link Control

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

Link Controlคืออะไร?

Link Control เป็นส่วนขยายของ Chrome ที่พัฒนาโดย yikeware และคุณลักษณะหลักของมันคือ "Manage whether links are opened in the same tab or a new tab"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Link Control

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    }
}