Linkparser

LinkParser analyzes the links of the current page. It can differentiate between 9 link types & mark them in different colors.

Qu'est-ce que Linkparser ?

Linkparser est une extension Chrome développée par claneo-chrome-extensions, et sa fonction principale est "LinkParser analyzes the links of the current page. It can differentiate between 9 link types & mark them in different colors.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Linkparser

Téléchargez les fichiers d'extension Linkparser 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

                        Linkpaser can differentiate the following type of links in order to count them or mark them on the webpage: internal links, internal dofollow links, internal nofollow links, subdomain links, subdomain dofollow links, subdomain nofollow links, external links, external dofollow links, extermal nofollow links. How Linkparser shows you the information it gathers is very much up to you. It is very customizable!                    

Informations de Base sur l'Extension

Nom Linkparser Linkparser
ID pmghbmgeolancmmnklifafgooobplifn
URL Officiel https://chromewebstore.google.com/detail/linkparser/pmghbmgeolancmmnklifafgooobplifn
Description LinkParser analyzes the links of the current page. It can differentiate between 9 link types & mark them in different colors.
Taille du Fichier 71.54 KB
Nombre d'Installations 8,342
Version Actuelle 2.0.2
Dernière Mise à Jour 2024-02-06
Date de Publication 2021-03-17
Évaluation 4.05/5 Total 21 Évaluations
Développeur claneo-chrome-extensions
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://www.claneo.com/de/linkparser/
URL de la Page d'Aide https://www.claneo.com/de/linkparser/
URL de la Page de Politique de Confidentialité https://www.claneo.com/de/datenschutz
Langues Prises en Charge de,en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": "icon_64.png",
        "default_popup": "popup.html",
        "default_title": ""
    },
    "content_scripts": [
        {
            "all_frames": false,
            "js": [
                "linkparser.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_idle"
        }
    ],
    "default_locale": "en",
    "description": "__MSG_extension_description__",
    "homepage_url": "http:\/\/www.linkparser.com",
    "icons": {
        "128": "icon_64.png",
        "64": "icon_64.png"
    },
    "manifest_version": 3,
    "name": "Linkparser",
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "version": "2.0.2"
}