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은(는) https://ludwigmakhyan.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension identifies, analyses, and displays the outgoing links from the active webpage. "External Links Identifier" is a…"입니다.

확장 프로그램 스크린샷

screenshot

External Links Identifier 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
            ]
        }
    ]
}