External Links Identifier

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

Qu'est-ce que External Links Identifier ?

External Links Identifier est une extension Chrome développée par https://ludwigmakhyan.com, et sa fonction principale est "This extension identifies, analyses, and displays the outgoing links from the active webpage. "External Links Identifier" is a…".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension External Links Identifier

Téléchargez les fichiers d'extension External Links Identifier au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom External Links Identifier External Links Identifier
ID hgnemfnljgekelcoiohjeefokppaccmd
URL Officiel https://chromewebstore.google.com/detail/external-links-identifier/hgnemfnljgekelcoiohjeefokppaccmd
Description This extension identifies, analyses, and displays the outgoing links from the active webpage. "External Links Identifier" is a…
Taille du Fichier 26.38 KB
Nombre d'Installations 152
Version Actuelle 1.1
Dernière Mise à Jour 2023-06-12
Date de Publication 2023-06-11
Évaluation 5.00/5 Total 2 Évaluations
Développeur https://ludwigmakhyan.com
Email [email protected]
Type de Paiement free
URL de la Page de Politique de Confidentialité https://ludwigmakhyan.com/privacy-policy-for-chrome-extensions
Langues Prises en Charge 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"
            ]
        }
    ]
}