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.
Cos'è External Followed Link Highlighter?
External Followed Link Highlighter è un'estensione di Chrome sviluppata da Richard Parnaby-King, e la sua funzione principale è "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 dell'Estensione
Scarica il file CRX dell'estensione External Followed Link Highlighter
Scarica i file di estensione External Followed Link Highlighter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | |
ID | ldppbkmjichlgoknicpibbekkajojclb |
URL Ufficiale | https://chrome.google.com/webstore/detail/external-followed-link-hi/ldppbkmjichlgoknicpibbekkajojclb |
Descrizione | 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. |
Dimensione del File | 40.5 KB |
Conteggio Installazioni | 2,000 |
Versione Corrente | 1.2 |
Ultimo Aggiornamento | 2017-08-24 |
Data di Pubblicazione | 2017-08-24 |
Valutazione | 4.00/5 Totale 8 Valutazioni |
Sviluppatore | Richard Parnaby-King |
Tipo di Pagamento | free |
Lingue Supportate | 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 } } |