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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Richard Parnaby-King, και η κύρια λειτουργία του είναι "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.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης External Followed Link Highlighter
Λήψη αρχείων επέκτασης 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.
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | ldppbkmjichlgoknicpibbekkajojclb |
Επίσημο URL | 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 } } |