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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } } |