Linkparser

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

ما هو Linkparser؟

Linkparser هو إضافة Chrome تم تطويرها بواسطة 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 للإضافة Linkparser

قم بتنزيل ملفات الامتداد Linkparser بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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/
عنوان صفحة المساعدة https://www.claneo.com/de/linkparser/
عنوان صفحة سياسة الخصوصية 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"
}