Disable links.

Hold Ctrl+Alt to disable the links temporarily.

Disable links. là gì?

Disable links. là một tiện ích mở rộng Chrome được phát triển bởi alienav, và tính năng chính của nó là "Hold Ctrl+Alt to disable the links temporarily.".

Ả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 Disable links.

Tải xuống các tệp mở rộng Disable links. 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

                        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.                    

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

Tên Disable links. Disable links.
ID kgghjfabpkpodeancnenkndklnomjpbf
URL Chính Thức https://chromewebstore.google.com/detail/disable-links/kgghjfabpkpodeancnenkndklnomjpbf
Mô tả Hold Ctrl+Alt to disable the links temporarily.
Kích Thước Tệp 9.21 KB
Số Lần Cài Đặt 1,254
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2022-06-18
Ngày Phát Hành 2014-07-14
Đánh Giá 3.36/5 Tổng số 33 Đánh Giá
Nhà Phát Triển alienav
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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:\/\/*\/*"
    ]
}