NoIndex,NoFollow Meta Tag Checker
https://github.com/richard-parnaby-king/Meta-Checker
What is NoIndex,NoFollow Meta Tag Checker?
NoIndex,NoFollow Meta Tag Checker is a Chrome extension developed by Richard Parnaby-King, and its main feature is "https://github.com/richard-parnaby-king/Meta-Checker".
Extension Screenshots
Download NoIndex,NoFollow Meta Tag Checker Extension CRX File
Download NoIndex,NoFollow Meta Tag Checker extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
By default, Googlebot will index a page and follow links to it. You can use a special HTML tag to tell robots not to index the content of a page, and/or not scan it for links to follow. For example:... In the majority of cases this is only used on development or staging sites and not used on live websites. This extension generates a notification if a robots meta tag is found with either "noindex" or "nofollow" in the contents.
Extension Basic Information
Name | NoIndex,NoFollow Meta Tag Checker |
ID | aijcgkcgldkomeddnlpbhdelcpfamklm |
Official URL | https://chromewebstore.google.com/detail/noindexnofollow-meta-tag/aijcgkcgldkomeddnlpbhdelcpfamklm |
Description | https://github.com/richard-parnaby-king/Meta-Checker |
File Size | 19.12 KB |
Installation Count | 3,971 |
Current Version | 1.1 |
Last Updated | 2017-08-24 |
Publish Date | 2017-08-24 |
Rating | 3.83/5 Total 12 Ratings |
Developer | Richard Parnaby-King |
Payment Type | free |
Supported Languages | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "NoIndex,NoFollow Meta Tag Checker", "description": "https:\/\/github.com\/richard-parnaby-king\/Meta-Checker", "version": "1.1", "homepage_url": "https:\/\/github.com\/richard-parnaby-king\/External-Followed-Link-Highlighter", "author": "Richard Parnaby-King", "icons": { "128": "icon.png" }, "permissions": [ "tabs", "notifications", "http:\/\/*\/*", "https:\/\/*\/*" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "contentscript.js" ] } ], "background": { "scripts": [ "bg.js" ], "persistent": false } } |