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:\/\/*\/*"
    ]
}