Link in Current Tab

Force all links to be opened in current tab instead of the new one

O que é Link in Current Tab?

Link in Current Tab é uma extensão do Chrome desenvolvida por SAGAN, e sua principal característica é "Force all links to be opened in current tab instead of the new one".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Link in Current Tab

Baixe arquivos de extensão Link in Current Tab 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

                        This extension forces all links to be opened in the current tab. It does it in a way that should work in ALL websites, even if the sites that load contents dynamically via AJAX.

Note You can still open a link in the new tab at any time, by clicking a link when holding the "Ctrl" key, or using the middle mouse button to open a link.

无视页面里 a 链接的 target="_blank" 属性, 强制所有链接在当前 tab 页打开.                    

Informações Básicas da Extensão

Nome Link in Current Tab Link in Current Tab
ID cbkcdebbfbegnmbephalggnchfebihbl
URL Oficial https://chromewebstore.google.com/detail/link-in-current-tab/cbkcdebbfbegnmbephalggnchfebihbl
Descrição Force all links to be opened in current tab instead of the new one
Tamanho do Arquivo 3.46 KB
Contagem de Instalações 194
Versão Atual 1.0.11
Última Atualização 2023-12-21
Data de Publicação 2018-06-18
Classificação 5.00/5 Total de 3 Avaliações
Desenvolvedor SAGAN
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/sagan/chrome-extension-link-in-current-tab
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Link in Current Tab",
    "description": "Force all links to be opened in current tab instead of the new one",
    "version": "1.0.11",
    "author": "Jacques De SAGAN",
    "manifest_version": 2,
    "permissions": [],
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ]
}