Linkparser

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

Hvad er Linkparser?

Linkparser er en Chrome-udvidelse udviklet af claneo-chrome-extensions, og dens hovedfunktion er "LinkParser analyzes the links of the current page. It can differentiate between 9 link types & mark them in different colors.".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot
screenshot

Download Linkparser-udvidelses-CRX-fil

Download Linkparser-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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!                    

Grundlæggende oplysninger om udvidelsen

Navn Linkparser Linkparser
ID pmghbmgeolancmmnklifafgooobplifn
Officiel URL https://chromewebstore.google.com/detail/linkparser/pmghbmgeolancmmnklifafgooobplifn
Beskrivelse LinkParser analyzes the links of the current page. It can differentiate between 9 link types & mark them in different colors.
Filstørrelse 71.54 KB
Antal Installationer 8,342
Nuværende Version 2.0.2
Senest Opdateret 2024-02-06
Udgivelsesdato 2021-03-17
Bedømmelse 4.05/5 Samlet 21 Bedømmelser
Udvikler claneo-chrome-extensions
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://www.claneo.com/de/linkparser/
Hjælpeside-URL https://www.claneo.com/de/linkparser/
URL til Fortrolighedspolitik Side https://www.claneo.com/de/datenschutz
Understøttede Sprog 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"
}