Link Fixer

Restores consistent ctrl+click, shift+click, cmd+click and middle-click behaviour when clicking links.

Link Fixerとは何ですか?

Link Fixerはdanielnixonによって開発されたChromeの拡張機能で、その主な機能は「Restores consistent ctrl+click, shift+click, cmd+click and middle-click behaviour when clicking links.」です。

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

screenshot

Link Fixer拡張機能のCRXファイルをダウンロード

Link Fixer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        The default behaviour of ctrl+click, shift+click, cmd+click (on macOS) and middle-click when clicking on links is to open the link in a new tab or new window.

This behaviour is sometimes broken by careless developers.

This add-on restores the default behaviour, ensuring the modifier keys always cause links to open in a new tab.                    

拡張機能の基本情報

名前 Link Fixer Link Fixer
ID mfgoieafikaldiglpkfgifoeigjcifmk
公式URL https://chromewebstore.google.com/detail/link-fixer/mfgoieafikaldiglpkfgifoeigjcifmk
説明 Restores consistent ctrl+click, shift+click, cmd+click and middle-click behaviour when clicking links.
ファイルサイズ 88.84 KB
インストール数 1,358
現在のバージョン 1.11
最終更新日 2019-07-07
公開日 2019-07-06
評価 4.50/5 合計 28 レビュー
開発者 danielnixon
支払い方法 free
拡張機能のウェブサイト https://github.com/danielnixon/link-fixer
ヘルプページのURL https://github.com/danielnixon/link-fixer/issues
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Link Fixer",
    "description": "Restores consistent ctrl+click, shift+click, cmd+click and middle-click behaviour when clicking links.",
    "version": "1.11",
    "homepage_url": "https:\/\/github.com\/danielnixon\/link-fixer",
    "icons": {
        "48": "icons\/link-48.png"
    },
    "background": {
        "scripts": [
            "background-script.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html",
        "browser_style": true
    },
    "permissions": [
        "browserSettings",
        "storage"
    ],
    "applications": {
        "gecko": {
            "id": "{18b670e2-67df-4b26-b9b0-34835d1f062a}"
        }
    }
}