Link Fixer

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

Apa itu Link Fixer?

Link Fixer adalah ekstensi Chrome yang dikembangkan oleh danielnixon, dan fitur utamanya adalah "Restores consistent ctrl+click, shift+click, cmd+click and middle-click behaviour when clicking links.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Link Fixer

Unduh file ekstensi Link Fixer dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Link Fixer Link Fixer
ID mfgoieafikaldiglpkfgifoeigjcifmk
URL Resmi https://chromewebstore.google.com/detail/link-fixer/mfgoieafikaldiglpkfgifoeigjcifmk
Deskripsi Restores consistent ctrl+click, shift+click, cmd+click and middle-click behaviour when clicking links.
Ukuran File 88.84 KB
Jumlah Instalasi 1,358
Versi Saat Ini 1.11
Terakhir Diperbarui 2019-07-07
Tanggal Publikasi 2019-07-06
Penilaian 4.50/5 Total 28 Penilaian
Pengembang danielnixon
Tipe Pembayaran free
Situs Ekstensi https://github.com/danielnixon/link-fixer
URL Halaman Bantuan https://github.com/danielnixon/link-fixer/issues
Bahasa yang Didukung 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}"
        }
    }
}