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
官方網址 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}"
        }
    }
}