Heading Tag Markup
This extension show the h-Tag on page.
Was ist Heading Tag Markup?
Heading Tag Markup ist eine Chrome-Erweiterung, die von Webreload entwickelt wurde, und ihr Hauptmerkmal ist "This extension show the h-Tag on page.".
Erweiterungsscreenshots
Heading Tag Markup-Erweiterungs-CRX-Datei herunterladen
Laden Sie Heading Tag Markup-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
This extension visual highlights the h-Tag on every page.
With the add-on "Heading Tag Markup" you can highlight the h1-h6 tag on the website.
Features
- h1 - h6 Highlight day
- Display which day is currently being output
- differentiation of h1 - h6 tags by different colors
- function can be activated / deactivated directly with a click on the Add-On icon Grundlegende Informationen zur Erweiterung
| Name | |
| ID | keeiendlnmbddkjjhnbegaaheohkfhoj |
| Offizielle URL | https://chromewebstore.google.com/detail/heading-tag-markup/keeiendlnmbddkjjhnbegaaheohkfhoj |
| Beschreibung | This extension show the h-Tag on page. |
| Dateigröße | 8.25 KB |
| Installationsanzahl | 6,832 |
| Aktuelle Version | 1.0 |
| Letztes Update | 2019-09-06 |
| Veröffentlichungsdatum | 2019-09-06 |
| Bewertung | 4.57/5 Insgesamt 7 Bewertungen |
| Entwickler | Webreload |
| [email protected] | |
| Zahlungsart | free |
| Hilfeseite URL | http://www.wrel.de/google-tag-manager-support/ |
| Unterstützte Sprachen | de |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Heading Tag Markup",
"version": "1.0",
"manifest_version": 2,
"description": "This extension show the h-Tag on page.",
"permissions": [
"https:\/\/*\/*",
"http:\/\/*\/*",
"tabs",
"storage"
],
"icons": {
"128": "h-tag.png"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"heading.js"
],
"css": [
"heading.css"
]
}
],
"browser_action": {
"default_popup": "popup.html",
"default_title": "Heading Tag Settings"
}
} | |