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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "LinkParser analyzes the links of the current page. It can differentiate between 9 link types & mark them in different colors."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Linkparser एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
ईमेल [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"
}