Disable links.

Hold Ctrl+Alt to disable the links temporarily.

Disable links.とは何ですか?

Disable links.はalienavによって開発されたChromeの拡張機能で、その主な機能は「Hold Ctrl+Alt to disable the links temporarily.」です。

拡張機能のスクリーンショット

screenshot

Disable links.拡張機能のCRXファイルをダウンロード

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
Eメール [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:\/\/*\/*"
    ]
}