Linkparser

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

Linkparserとは何ですか?

Linkparserはclaneo-chrome-extensionsによって開発されたChromeの拡張機能で、その主な機能は「LinkParser analyzes the links of the current page. It can differentiate between 9 link types & mark them in different colors.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot

Linkparser拡張機能のCRXファイルをダウンロード

Linkparser拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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!                    

拡張機能の基本情報

名前 Linkparser Linkparser
ID pmghbmgeolancmmnklifafgooobplifn
公式URL https://chromewebstore.google.com/detail/linkparser/pmghbmgeolancmmnklifafgooobplifn
説明 LinkParser analyzes the links of the current page. It can differentiate between 9 link types & mark them in different colors.
ファイルサイズ 71.54 KB
インストール数 8,342
現在のバージョン 2.0.2
最終更新日 2024-02-06
公開日 2021-03-17
評価 4.05/5 合計 21 レビュー
開発者 claneo-chrome-extensions
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://www.claneo.com/de/linkparser/
ヘルプページのURL https://www.claneo.com/de/linkparser/
プライバシーポリシーページのURL https://www.claneo.com/de/datenschutz
対応言語 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"
}