Link Fixer

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

Link Fixerคืออะไร?

Link Fixer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย danielnixon และคุณลักษณะหลักของมันคือ "Restores consistent ctrl+click, shift+click, cmd+click and middle-click behaviour when clicking links."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Link Fixer

ดาวน์โหลดไฟล์ส่วนขยาย 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}"
        }
    }
}