Get Style

see css attributes instantly by mousing over

Get Style란 무엇입니까?

Get Style은(는) danyalette에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "see css attributes instantly by mousing over"입니다.

Get Style 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        view CSS properties on the fly, by mousing over                    

확장 프로그램 기본 정보

이름 Get Style Get Style
ID coidiadldgffddljfiafnabogkhadecg
공식 URL https://chrome.google.com/webstore/detail/get-style/coidiadldgffddljfiafnabogkhadecg
설명 see css attributes instantly by mousing over
파일 크기 28.73 KB
설치 횟수 227
현재 버전 1.0
최근 업데이트 2014-08-29
출시 날짜 2014-08-29
평점 5.00/5 총 1 개의 평점
개발자 danyalette
결제 유형 free
확장 프로그램 웹 사이트 http://danyalette.com
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Get Style",
    "description": "see css attributes instantly by mousing over",
    "version": "1.0",
    "permissions": [
        "activeTab"
    ],
    "icons": {
        "16": "icon-16.png",
        "32": "icon-32.png",
        "48": "icon-48.png",
        "64": "icon-64.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "mystyles.css"
            ],
            "script": [
                "getStyle.js",
                "getStyleChecker.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "get style",
        "default_icon": "icon-32.png"
    },
    "web_accessible_resources": [
        "icon-64.png"
    ],
    "manifest_version": 2
}