Link Control

Manage whether links are opened in the same tab or a new tab

O que é Link Control?

Link Control é uma extensão do Chrome desenvolvida por yikeware, e sua principal característica é "Manage whether links are opened in the same tab or a new tab".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Link Control

Baixe arquivos de extensão Link Control 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

                        A lightweight extension that puts you in control of how links open.

The extension lets you:

- Always open links in the same tab
- Always open links in a new tab
- Choose the behaviour for specific websites

Useful for stopping the behaviour of sites such as eBay, Etsy, Temu and others that open a new tab every time you click on a link, or it can be used to add that behaviour for other sites.                    

Informações Básicas da Extensão

Nome Link Control Link Control
ID olcpmlhnomiabbndnfplobojnhjljapm
URL Oficial https://chromewebstore.google.com/detail/link-control/olcpmlhnomiabbndnfplobojnhjljapm
Descrição Manage whether links are opened in the same tab or a new tab
Tamanho do Arquivo 12.23 KB
Contagem de Instalações 1,015
Versão Atual 1.1
Última Atualização 2023-12-21
Data de Publicação 2020-08-04
Classificação 4.21/5 Total de 14 Avaliações
Desenvolvedor yikeware
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Link Control",
    "description": "Manage whether links are opened in the same tab or a new tab",
    "version": "1.1",
    "manifest_version": 2,
    "permissions": [
        "storage",
        "tabs"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": "linkcontrol16.png",
        "show_matches": "*:\/\/*\/*"
    },
    "icons": {
        "16": "linkcontrol16.png",
        "48": "linkcontrol48.png",
        "128": "linkcontrol128.png"
    }
}