External Links Identifier

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

External Links Identifier là gì?

External Links Identifier là một tiện ích mở rộng Chrome được phát triển bởi https://ludwigmakhyan.com, và tính năng chính của nó là "This extension identifies, analyses, and displays the outgoing links from the active webpage. "External Links Identifier" is a…".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng External Links Identifier

Tải xuống các tệp mở rộng External Links Identifier dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên External Links Identifier External Links Identifier
ID hgnemfnljgekelcoiohjeefokppaccmd
URL Chính Thức https://chromewebstore.google.com/detail/external-links-identifier/hgnemfnljgekelcoiohjeefokppaccmd
Mô tả This extension identifies, analyses, and displays the outgoing links from the active webpage. "External Links Identifier" is a…
Kích Thước Tệp 26.38 KB
Số Lần Cài Đặt 152
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2023-06-12
Ngày Phát Hành 2023-06-11
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển https://ludwigmakhyan.com
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://ludwigmakhyan.com/privacy-policy-for-chrome-extensions
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}