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
官方網址 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
電子郵箱 [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"
}