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
擴展基本資訊
名稱 | Heading Tag Markup |
ID | keeiendlnmbddkjjhnbegaaheohkfhoj |
官方網址 | 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" } } |