Heading Tag Markup
This extension show the h-Tag on page.
Hvad er Heading Tag Markup?
Heading Tag Markup er en Chrome-udvidelse udviklet af Webreload, og dens hovedfunktion er "This extension show the h-Tag on page.".
Udvidelsesskærmbilleder
Download Heading Tag Markup-udvidelses-CRX-fil
Download Heading Tag Markup-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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 Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | keeiendlnmbddkjjhnbegaaheohkfhoj |
| Officiel URL | https://chromewebstore.google.com/detail/heading-tag-markup/keeiendlnmbddkjjhnbegaaheohkfhoj |
| Beskrivelse | This extension show the h-Tag on page. |
| Filstørrelse | 8.25 KB |
| Antal Installationer | 6,832 |
| Nuværende Version | 1.0 |
| Senest Opdateret | 2019-09-06 |
| Udgivelsesdato | 2019-09-06 |
| Bedømmelse | 4.57/5 Samlet 7 Bedømmelser |
| Udvikler | Webreload |
| [email protected] | |
| Betalingsmetode | free |
| Hjælpeside-URL | http://www.wrel.de/google-tag-manager-support/ |
| Understøttede Sprog | 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"
}
} | |