NoIndex,NoFollow Meta Tag Checker
https://github.com/richard-parnaby-king/Meta-Checker
Что такое NoIndex,NoFollow Meta Tag Checker?
NoIndex,NoFollow Meta Tag Checker - это расширение Chrome, разработанное Richard Parnaby-King, и его основная функция - "https://github.com/richard-parnaby-king/Meta-Checker".
Снимки экрана расширения
Скачать файл CRX расширения NoIndex,NoFollow Meta Tag Checker
Скачайте файлы расширений 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 } } |