NoIndex,NoFollow Meta Tag Checker
https://github.com/richard-parnaby-king/Meta-Checker
Was ist NoIndex,NoFollow Meta Tag Checker?
NoIndex,NoFollow Meta Tag Checker ist eine Chrome-Erweiterung, die von Richard Parnaby-King entwickelt wurde, und ihr Hauptmerkmal ist "https://github.com/richard-parnaby-king/Meta-Checker".
Erweiterungsscreenshots
NoIndex,NoFollow Meta Tag Checker-Erweiterungs-CRX-Datei herunterladen
Laden Sie NoIndex,NoFollow Meta Tag Checker-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | aijcgkcgldkomeddnlpbhdelcpfamklm |
| Offizielle URL | https://chromewebstore.google.com/detail/noindexnofollow-meta-tag/aijcgkcgldkomeddnlpbhdelcpfamklm |
| Beschreibung | https://github.com/richard-parnaby-king/Meta-Checker |
| Dateigröße | 19.12 KB |
| Installationsanzahl | 3,971 |
| Aktuelle Version | 1.1 |
| Letztes Update | 2017-08-24 |
| Veröffentlichungsdatum | 2017-08-24 |
| Bewertung | 3.83/5 Insgesamt 12 Bewertungen |
| Entwickler | Richard Parnaby-King |
| Zahlungsart | free |
| Unterstützte Sprachen | 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
}
} | |