Heading Tag Markup
This extension show the h-Tag on page.
Что такое Heading Tag Markup?
Heading Tag Markup - это расширение Chrome, разработанное Webreload, и его основная функция - "This extension show the h-Tag on page.".
Снимки экрана расширения
Скачать файл CRX расширения Heading Tag Markup
Скачайте файлы расширений Heading Tag Markup в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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
Основная информация о расширении
Название | Heading Tag Markup |
ID | keeiendlnmbddkjjhnbegaaheohkfhoj |
Официальный URL | https://chromewebstore.google.com/detail/heading-tag-markup/keeiendlnmbddkjjhnbegaaheohkfhoj |
Описание | This extension show the h-Tag on page. |
Размер файла | 8.25 KB |
Количество установок | 6,832 |
Текущая Версия | 1.0 |
Последнее Обновление | 2019-09-06 |
Дата публикации | 2019-09-06 |
Рейтинг | 4.57/5 Всего 7 оценок |
Разработчик | Webreload |
Электронная почта | [email protected] |
Тип оплаты | free |
URL страницы помощи | http://www.wrel.de/google-tag-manager-support/ |
Поддерживаемые языки | 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" } } |