External Links Identifier

This extension identifies, analyses, and displays the outgoing links from the active webpage. "External Links Identifier" is a…

O que é External Links Identifier?

External Links Identifier é uma extensão do Chrome desenvolvida por https://ludwigmakhyan.com, e sua principal característica é "This extension identifies, analyses, and displays the outgoing links from the active webpage. "External Links Identifier" is a…".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão External Links Identifier

Baixe arquivos de extensão External Links Identifier 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 identifies, analyses, and displays the outgoing links from the active webpage.
"External Links Identifier" is a lightweight and efficient tool for SEO professionals, web developers, and curious users alike. It identifies and lists all outgoing links on the active web page. This includes parsing both static HTML links and links dynamically added by JavaScript, providing a comprehensive view of the external references on a webpage.

The extension details the URL of each link, its 'rel' attribute, target, and HTTP status code of the destination URL. It also groups these links by domain, giving you a high-level view of where the active webpage directs traffic.

To use this extension, simply click on the extension icon when you're on a webpage you want to analyze. The extension will display the outgoing links and their associated information in a convenient popup.                    

Informações Básicas da Extensão

Nome External Links Identifier External Links Identifier
ID hgnemfnljgekelcoiohjeefokppaccmd
URL Oficial https://chromewebstore.google.com/detail/external-links-identifier/hgnemfnljgekelcoiohjeefokppaccmd
Descrição This extension identifies, analyses, and displays the outgoing links from the active webpage. "External Links Identifier" is a…
Tamanho do Arquivo 26.38 KB
Contagem de Instalações 152
Versão Atual 1.1
Última Atualização 2023-06-12
Data de Publicação 2023-06-11
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor https://ludwigmakhyan.com
Email [email protected]
Tipo de Pagamento free
URL da Página de Política de Privacidade https://ludwigmakhyan.com/privacy-policy-for-chrome-extensions
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "External Links Identifier",
    "version": "1.1",
    "author": "Ludwig Makhyan",
    "homepage_url": "https:\/\/ludwigmakhyan.com\/",
    "permissions": [
        "activeTab",
        "scripting"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": "icon.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ]
}