Linkparser

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

Was ist Linkparser?

Linkparser ist eine Chrome-Erweiterung, die von claneo-chrome-extensions entwickelt wurde, und ihr Hauptmerkmal ist "LinkParser analyzes the links of the current page. It can differentiate between 9 link types & mark them in different colors.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

Linkparser-Erweiterungs-CRX-Datei herunterladen

Laden Sie Linkparser-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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!                    

Grundlegende Informationen zur Erweiterung

Name Linkparser Linkparser
ID pmghbmgeolancmmnklifafgooobplifn
Offizielle URL https://chromewebstore.google.com/detail/linkparser/pmghbmgeolancmmnklifafgooobplifn
Beschreibung LinkParser analyzes the links of the current page. It can differentiate between 9 link types & mark them in different colors.
Dateigröße 71.54 KB
Installationsanzahl 8,342
Aktuelle Version 2.0.2
Letztes Update 2024-02-06
Veröffentlichungsdatum 2021-03-17
Bewertung 4.05/5 Insgesamt 21 Bewertungen
Entwickler claneo-chrome-extensions
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://www.claneo.com/de/linkparser/
Hilfeseite URL https://www.claneo.com/de/linkparser/
URL der Datenschutzrichtlinien-Seite https://www.claneo.com/de/datenschutz
Unterstützte Sprachen 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"
}