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文件

下載External Followed Link Highlighter擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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
    }
}