Link Fixer

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

O que é Link Fixer?

Link Fixer é uma extensão do Chrome desenvolvida por danielnixon, e sua principal característica é "Restores consistent ctrl+click, shift+click, cmd+click and middle-click behaviour when clicking links.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Link Fixer

Baixe arquivos de extensão Link Fixer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Link Fixer Link Fixer
ID mfgoieafikaldiglpkfgifoeigjcifmk
URL Oficial https://chromewebstore.google.com/detail/link-fixer/mfgoieafikaldiglpkfgifoeigjcifmk
Descrição Restores consistent ctrl+click, shift+click, cmd+click and middle-click behaviour when clicking links.
Tamanho do Arquivo 88.84 KB
Contagem de Instalações 1,358
Versão Atual 1.11
Última Atualização 2019-07-07
Data de Publicação 2019-07-06
Classificação 4.50/5 Total de 28 Avaliações
Desenvolvedor danielnixon
Tipo de Pagamento free
Site da Extensão https://github.com/danielnixon/link-fixer
URL da Página de Ajuda https://github.com/danielnixon/link-fixer/issues
Idiomas Suportados 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}"
        }
    }
}