External Followed Link Highlighter

Checks all links on a page for any external links that do not have the attribute rel="nofollow" and highlights them in a red border.

External Followed Link Highlighter란 무엇입니까?

External Followed Link Highlighter은(는) Richard Parnaby-King에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Checks all links on a page for any external links that do not have the attribute rel="nofollow" and highlights them in a red border."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

External Followed Link Highlighter 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        The attribute rel="nofollow" provides a way for webmasters to tell search engines "Don't follow links on this page" or "Don't follow this specific link."

This tool will add a red border around any links that are leading away from the current website that do not have this attribute.

Options:

* Auto enable for all websites - highlight all external links on all webpages when you visit them.
* Select colour for link highlighter - change the colour of the border that highlights links.                    

확장 프로그램 기본 정보

이름 External Followed Link Highlighter External Followed Link Highlighter
ID ldppbkmjichlgoknicpibbekkajojclb
공식 URL https://chrome.google.com/webstore/detail/external-followed-link-hi/ldppbkmjichlgoknicpibbekkajojclb
설명 Checks all links on a page for any external links that do not have the attribute rel="nofollow" and highlights them in a red border.
파일 크기 40.5 KB
설치 횟수 2,000
현재 버전 1.2
최근 업데이트 2017-08-24
출시 날짜 2017-08-24
평점 4.00/5 총 8 개의 평점
개발자 Richard Parnaby-King
결제 유형 free
지원되는 언어 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "External Followed Link Highlighter",
    "short_name": "Link Highlighter",
    "description": "Checks all links on a page for any external links that do not have the attribute rel=\"nofollow\" and highlights them in a red border.",
    "version": "1.2",
    "author": "Richard Parnaby-King",
    "homepage_url": "https:\/\/github.com\/richard-parnaby-king\/External-Followed-Link-Highlighter",
    "icons": {
        "128": "icon.png"
    },
    "options_page": "options\/options.html",
    "browser_action": {
        "default_icon": "icon.png"
    },
    "permissions": [
        "tabs",
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    }
}