Disable links.

Hold Ctrl+Alt to disable the links temporarily.

Wat is Disable links.?

Disable links. is een Chrome-extensie ontwikkeld door alienav, en de belangrijkste functie is "Hold Ctrl+Alt to disable the links temporarily.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Disable links.

Download Disable links.-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Disable links. Disable links.
ID kgghjfabpkpodeancnenkndklnomjpbf
Officiële URL https://chromewebstore.google.com/detail/disable-links/kgghjfabpkpodeancnenkndklnomjpbf
Beschrijving Hold Ctrl+Alt to disable the links temporarily.
Bestandsgrootte 9.21 KB
Aantal Installaties 1,254
Huidige Versie 1.0
Laatst Bijgewerkt 2022-06-18
Publicatiedatum 2014-07-14
Beoordeling 3.36/5 Totaal 33 Beoordelingen
Ontwikkelaar alienav
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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:\/\/*\/*"
    ]
}