Disable links.

Hold Ctrl+Alt to disable the links temporarily.

Disable links.คืออะไร?

Disable links. เป็นส่วนขยายของ Chrome ที่พัฒนาโดย alienav และคุณลักษณะหลักของมันคือ "Hold Ctrl+Alt to disable the links temporarily."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Disable links.

ดาวน์โหลดไฟล์ส่วนขยาย Disable links. ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension is deprecated - Chrome has a built-in feature for this, just holding Alt while selecting prevents the link from being clicked. You can safely remove it.

Previous description:
This extension disables links when you hold Ctrl+Alt. This allows to select text from the middle of the link, and generally eases selection, eliminating the risk to click the link while copying it.

“Broken link” icon by Arthur Abt, from thenounproject.com collection.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Disable links. Disable links.
ID kgghjfabpkpodeancnenkndklnomjpbf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/disable-links/kgghjfabpkpodeancnenkndklnomjpbf
คำอธิบาย Hold Ctrl+Alt to disable the links temporarily.
ขนาดไฟล์ 9.21 KB
จำนวนการติดตั้ง 1,254
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2022-06-18
วันที่เผยแพร่ 2014-07-14
คะแนน 3.36/5 รวมทั้งหมด 33 คะแนน
ผู้พัฒนา alienav
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Disable links.",
    "description": "Hold Ctrl+Alt to disable the links temporarily.",
    "version": "1.0",
    "manifest_version": 2,
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "keyboardhook.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}