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é es External Followed Link Highlighter?
External Followed Link Highlighter es una extensión de Chrome desarrollada por Richard Parnaby-King, y su función principal es "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.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión External Followed Link Highlighter
Descarga archivos de extensión External Followed Link Highlighter en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | |
ID | ldppbkmjichlgoknicpibbekkajojclb |
URL Oficial | https://chrome.google.com/webstore/detail/external-followed-link-hi/ldppbkmjichlgoknicpibbekkajojclb |
Descripción | 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. |
Tamaño del Archivo | 40.5 KB |
Cantidad de Instalaciones | 2,000 |
Versión Actual | 1.2 |
Última Actualización | 2017-08-24 |
Fecha de Publicación | 2017-08-24 |
Calificación | 4.00/5 Total de 8 Calificaciones |
Desarrollador | Richard Parnaby-King |
Tipo de Pago | free |
Idiomas Soportados | 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 } } |