External Links Identifier

This extension identifies, analyses, and displays the outgoing links from the active webpage. "External Links Identifier" is a…

External Links Identifierคืออะไร?

External Links Identifier เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://ludwigmakhyan.com และคุณลักษณะหลักของมันคือ "This extension identifies, analyses, and displays the outgoing links from the active webpage. "External Links Identifier" is a…"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย External Links Identifier

ดาวน์โหลดไฟล์ส่วนขยาย External Links Identifier ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension identifies, analyses, and displays the outgoing links from the active webpage.
"External Links Identifier" is a lightweight and efficient tool for SEO professionals, web developers, and curious users alike. It identifies and lists all outgoing links on the active web page. This includes parsing both static HTML links and links dynamically added by JavaScript, providing a comprehensive view of the external references on a webpage.

The extension details the URL of each link, its 'rel' attribute, target, and HTTP status code of the destination URL. It also groups these links by domain, giving you a high-level view of where the active webpage directs traffic.

To use this extension, simply click on the extension icon when you're on a webpage you want to analyze. The extension will display the outgoing links and their associated information in a convenient popup.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ External Links Identifier External Links Identifier
ID hgnemfnljgekelcoiohjeefokppaccmd
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/external-links-identifier/hgnemfnljgekelcoiohjeefokppaccmd
คำอธิบาย This extension identifies, analyses, and displays the outgoing links from the active webpage. "External Links Identifier" is a…
ขนาดไฟล์ 26.38 KB
จำนวนการติดตั้ง 152
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2023-06-12
วันที่เผยแพร่ 2023-06-11
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา https://ludwigmakhyan.com
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://ludwigmakhyan.com/privacy-policy-for-chrome-extensions
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "External Links Identifier",
    "version": "1.1",
    "author": "Ludwig Makhyan",
    "homepage_url": "https:\/\/ludwigmakhyan.com\/",
    "permissions": [
        "activeTab",
        "scripting"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": "icon.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ]
}