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.
Qu'est-ce que External Followed Link Highlighter ?
External Followed Link Highlighter est une extension Chrome développée par Richard Parnaby-King, et sa fonction principale est "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.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension External Followed Link Highlighter
Téléchargez les fichiers d'extension External Followed Link Highlighter au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | |
ID | ldppbkmjichlgoknicpibbekkajojclb |
URL Officiel | https://chrome.google.com/webstore/detail/external-followed-link-hi/ldppbkmjichlgoknicpibbekkajojclb |
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. |
Taille du Fichier | 40.5 KB |
Nombre d'Installations | 2,000 |
Version Actuelle | 1.2 |
Dernière Mise à Jour | 2017-08-24 |
Date de Publication | 2017-08-24 |
Évaluation | 4.00/5 Total 8 Évaluations |
Développeur | Richard Parnaby-King |
Type de Paiement | free |
Langues Prises en Charge | 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 } } |