Disable links.

Hold Ctrl+Alt to disable the links temporarily.

Apa itu Disable links.?

Disable links. adalah ekstensi Chrome yang dikembangkan oleh alienav, dan fitur utamanya adalah "Hold Ctrl+Alt to disable the links temporarily.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Disable links.

Unduh file ekstensi Disable links. dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Disable links. Disable links.
ID kgghjfabpkpodeancnenkndklnomjpbf
URL Resmi https://chromewebstore.google.com/detail/disable-links/kgghjfabpkpodeancnenkndklnomjpbf
Deskripsi Hold Ctrl+Alt to disable the links temporarily.
Ukuran File 9.21 KB
Jumlah Instalasi 1,254
Versi Saat Ini 1.0
Terakhir Diperbarui 2022-06-18
Tanggal Publikasi 2014-07-14
Penilaian 3.36/5 Total 33 Penilaian
Pengembang alienav
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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:\/\/*\/*"
    ]
}