Linkparser

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

O que é Linkparser?

Linkparser é uma extensão do Chrome desenvolvida por claneo-chrome-extensions, e sua principal característica é "LinkParser analyzes the links of the current page. It can differentiate between 9 link types & mark them in different colors.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Linkparser

Baixe arquivos de extensão Linkparser 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

                        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!                    

Informações Básicas da Extensão

Nome Linkparser Linkparser
ID pmghbmgeolancmmnklifafgooobplifn
URL Oficial https://chromewebstore.google.com/detail/linkparser/pmghbmgeolancmmnklifafgooobplifn
Descrição LinkParser analyzes the links of the current page. It can differentiate between 9 link types & mark them in different colors.
Tamanho do Arquivo 71.54 KB
Contagem de Instalações 8,342
Versão Atual 2.0.2
Última Atualização 2024-02-06
Data de Publicação 2021-03-17
Classificação 4.05/5 Total de 21 Avaliações
Desenvolvedor claneo-chrome-extensions
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://www.claneo.com/de/linkparser/
URL da Página de Ajuda https://www.claneo.com/de/linkparser/
URL da Página de Política de Privacidade https://www.claneo.com/de/datenschutz
Idiomas Suportados 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"
}