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 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 फ़ाइल डाउनलोड करें
crx प्रारूप में External Followed Link Highlighter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 } } |