NoIndex,NoFollow Meta Tag Checker
https://github.com/richard-parnaby-king/Meta-Checker
什么是NoIndex,NoFollow Meta Tag Checker?
NoIndex,NoFollow Meta Tag Checker是由Richard Parnaby-King开发的Chrome扩展程序,该扩展的主要功能是“https://github.com/richard-parnaby-king/Meta-Checker”。
扩展截图
下载NoIndex,NoFollow Meta Tag Checker扩展crx文件
下载NoIndex,NoFollow Meta Tag Checker扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | NoIndex,NoFollow Meta Tag Checker |
ID | aijcgkcgldkomeddnlpbhdelcpfamklm |
官方URL | https://chromewebstore.google.com/detail/noindexnofollow-meta-tag/aijcgkcgldkomeddnlpbhdelcpfamklm |
简介 | https://github.com/richard-parnaby-king/Meta-Checker |
文件大小 | 19.12 KB |
安装次数 | 3,971 |
当前版本 | 1.1 |
更新时间 | 2017-08-24 |
上架时间 | 2017-08-24 |
评分 | 3.83/5 共12次评分 |
开发者 | Richard Parnaby-King |
付费类型 | free |
支持的语言 | 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 } } |