Heading Tag Markup
This extension show the h-Tag on page.
Vad är Heading Tag Markup?
Heading Tag Markup är en Chrome-tillägg utvecklad av Webreload, och dess huvudfunktion är "This extension show the h-Tag on page.".
Tilläggsskärmbilder
Ladda ner Heading Tag Markup-förlängningens CRX-fil
Ladda ner Heading Tag Markup-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
Namn | Heading Tag Markup |
ID | keeiendlnmbddkjjhnbegaaheohkfhoj |
Officiell webbadress | https://chromewebstore.google.com/detail/heading-tag-markup/keeiendlnmbddkjjhnbegaaheohkfhoj |
Beskrivning | This extension show the h-Tag on page. |
Filstorlek | 8.25 KB |
Antal Installationer | 6,832 |
Aktuell Version | 1.0 |
Senast Uppdaterad | 2019-09-06 |
Publiceringsdatum | 2019-09-06 |
Betyg | 4.57/5 Totalt 7 Betyg |
Utvecklare | Webreload |
E-post | [email protected] |
Betalningssätt | free |
Hjälpsida URL | http://www.wrel.de/google-tag-manager-support/ |
Stödda Språk | 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" } } |