Heading Tag Markup
This extension show the h-Tag on page.
什么是Heading Tag Markup?
Heading Tag Markup是由Webreload开发的Chrome扩展程序,该扩展的主要功能是“This extension show the h-Tag on page.”。
扩展截图
下载Heading Tag Markup扩展crx文件
下载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 扩展基本信息
| 名称 | |
| 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"
}
} | |