Heading Tag Markup
This extension show the h-Tag on page.
Co je Heading Tag Markup?
Heading Tag Markup je rozšíření Chrome vyvinuté Webreload, a jeho hlavní funkcí je „This extension show the h-Tag on page.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Heading Tag Markup
Stáhněte si soubory rozšíření Heading Tag Markup ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | Heading Tag Markup |
ID | keeiendlnmbddkjjhnbegaaheohkfhoj |
Oficiální URL | https://chromewebstore.google.com/detail/heading-tag-markup/keeiendlnmbddkjjhnbegaaheohkfhoj |
Popis | This extension show the h-Tag on page. |
Velikost souboru | 8.25 KB |
Počet instalací | 6,832 |
Aktuální Verze | 1.0 |
Poslední Aktualizace | 2019-09-06 |
Datum Vydání | 2019-09-06 |
Hodnocení | 4.57/5 Celkem 7 Hodnocení |
Vývojář | Webreload |
[email protected] | |
Typ Platby | free |
URL Stránky Nápovědy | http://www.wrel.de/google-tag-manager-support/ |
Podporované Jazyky | 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" } } |