HTML Style Quick Viewer

HTML DOM element style quick viewer

HTML Style Quick Viewer란 무엇입니까?

HTML Style Quick Viewer은(는) _(:з」∠)_에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "HTML DOM element style quick viewer"입니다.

확장 프로그램 스크린샷

screenshot

HTML Style Quick Viewer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        How about viewing the HTML DOM styles in a different way?
Just move your mouse and it shows the target's styles.

After installation, you may have to reload tabs to for the extension to take effect.

Instructions:
1. Click HTML Style Quick Viewer in the toolbar, then click 'run' button to start.
2. Move mouse to see the element's styles.
3. Mouse left click to close the popup panel.
4. Mouse middle click to pin the popup panel.
5. Click the 'Exit' button at the top-right or click 'Stop' button through the toolbar to stop.                    

확장 프로그램 기본 정보

이름 HTML Style Quick Viewer HTML Style Quick Viewer
ID inafmkpmbkldliccdbeieeafnbkcmmap
공식 URL https://chrome.google.com/webstore/detail/html-style-quick-viewer/inafmkpmbkldliccdbeieeafnbkcmmap
설명 HTML DOM element style quick viewer
파일 크기 15.88 KB
설치 횟수 271
현재 버전 1.0.2
최근 업데이트 2018-08-26
출시 날짜 2018-08-26
평점 5.00/5 총 3 개의 평점
개발자 _(:з」∠)_
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "HTML Style Quick Viewer",
    "description": "HTML DOM element style quick viewer",
    "version": "1.0.2",
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content\/content.js"
            ],
            "css": [
                "content\/content.css"
            ],
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "default_title": "HTML Style Quick Viewer\nRight click (Close)\nMiddle click (Pin)",
        "default_icon": {
            "16": "icons\/icon_16.png",
            "32": "icons\/icon_32.png",
            "48": "icons\/icon_48.png",
            "128": "icons\/icon_128.png"
        },
        "default_popup": "popup\/popup.html"
    },
    "manifest_version": 2
}