Link Fixer

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

Cos'è Link Fixer?

Link Fixer è un'estensione di Chrome sviluppata da danielnixon, e la sua funzione principale è "Restores consistent ctrl+click, shift+click, cmd+click and middle-click behaviour when clicking links.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Link Fixer

Scarica i file di estensione Link Fixer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Link Fixer Link Fixer
ID mfgoieafikaldiglpkfgifoeigjcifmk
URL Ufficiale https://chromewebstore.google.com/detail/link-fixer/mfgoieafikaldiglpkfgifoeigjcifmk
Descrizione Restores consistent ctrl+click, shift+click, cmd+click and middle-click behaviour when clicking links.
Dimensione del File 88.84 KB
Conteggio Installazioni 1,358
Versione Corrente 1.11
Ultimo Aggiornamento 2019-07-07
Data di Pubblicazione 2019-07-06
Valutazione 4.50/5 Totale 28 Valutazioni
Sviluppatore danielnixon
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/danielnixon/link-fixer
URL della Pagina di Aiuto https://github.com/danielnixon/link-fixer/issues
Lingue Supportate 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}"
        }
    }
}