showHTML
This extension shows information about HTML elements on a web page when you hover over them.
showHTML란 무엇입니까?
showHTML은(는) https://tech-in-check.blogspot.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension shows information about HTML elements on a web page when you hover over them."입니다.
확장 프로그램 스크린샷
showHTML 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
showHTML is a browser extension for developers and those who are curious about web page setup. It places a small text stripe at the top or bottom of any web page. As elements on the page are hovered over, details about each HTML element are displayed, including tag name, ID (if any) and classes (if any). The text stripe is customizable to provide convenience and accessibility. In the options you can change the font size, color, and placement of the text stripe. You can also move the stripe while in use; clicking on the text stripe will toggle it between the top and bottom of the browser window. Version 1.1.2 improvements: - Fixed bug that caused freezing in v1.1.1 Version 1.1.1 improvements: - Corrected options display for smaller screens - Added div enlargement when needed to show all text Version 1.1 improvements: - Font size and stripe position are customizable - Text stripe position can be toggled on mouse click Version 1.0.2 improvements: - Theme (text and background color) is customizable - Options page with storage sync added Version 1.0.1 improvements: - Removed unnecessary permission
확장 프로그램 기본 정보
이름 | showHTML |
ID | hpidplbbhlibnefjdbepbinmanddipne |
공식 URL | https://chromewebstore.google.com/detail/showhtml/hpidplbbhlibnefjdbepbinmanddipne |
설명 | This extension shows information about HTML elements on a web page when you hover over them. |
파일 크기 | 12.59 KB |
설치 횟수 | 483 |
현재 버전 | 1.1.2 |
최근 업데이트 | 2016-05-07 |
출시 날짜 | 2016-05-07 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | https://tech-in-check.blogspot.com |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://tech-in-check.blogspot.com/p/showhtml.html |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "showHTML", "description": "This extension shows information about HTML elements on a web page when you hover over them.", "version": "1.1.2", "short_name": "Show HTML tag names, IDs & classes for a web page", "homepage_url": "http:\/\/tech-in-check.blogspot.com\/p\/showhtml.html", "author": "freginold", "icons": { "16": "showHTML16.png", "48": "showHTML48.png", "128": "showHTML128.png" }, "browser_action": { "default_icon": { "19": "showHTML19.png", "38": "showHTML38.png" }, "default_title": "showHTML" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "options_ui": { "page": "options.html", "chrome_style": true }, "permissions": [ "activeTab", "storage" ] } |