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.

Hvad er External Followed Link Highlighter?

External Followed Link Highlighter er en Chrome-udvidelse udviklet af Richard Parnaby-King, og dens hovedfunktion er "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.".

Udvidelsesskærmbilleder

screenshot
screenshot

Download External Followed Link Highlighter-udvidelses-CRX-fil

Download External Followed Link Highlighter-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn External Followed Link Highlighter External Followed Link Highlighter
ID ldppbkmjichlgoknicpibbekkajojclb
Officiel URL https://chrome.google.com/webstore/detail/external-followed-link-hi/ldppbkmjichlgoknicpibbekkajojclb
Beskrivelse 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.
Filstørrelse 40.5 KB
Antal Installationer 2,000
Nuværende Version 1.2
Senest Opdateret 2017-08-24
Udgivelsesdato 2017-08-24
Bedømmelse 4.00/5 Samlet 8 Bedømmelser
Udvikler Richard Parnaby-King
Betalingsmetode free
Understøttede Sprog 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
    }
}