fontpecker

Easily get the CSS settings of texts on the Web pages.

fontpecker란 무엇입니까?

fontpecker은(는) Karate System에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Easily get the CSS settings of texts on the Web pages."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Easily get the CSS settings of texts on the Web pages.
You can clip it to the list, and refer to the CSS code.

Properties are
* font-family
* font-size
* line-height
* color
* font-style
* font-weight

Usage
1) Click the Fontpecker icon on the toolbar.
2) Just click on the text you want to check.

Notes
* Maximum number of clip is 10.
* If you clip over 10, old clips will be removed automatically.
* Some pages can't start this.

Novelties are...
https://suzuri.jp/search?q=fontpecker                    

확장 프로그램 기본 정보

이름 fontpecker fontpecker
ID micgmaephbfgheholpanoiafkjlojogg
공식 URL https://chrome.google.com/webstore/detail/fontpecker/micgmaephbfgheholpanoiafkjlojogg
설명 Easily get the CSS settings of texts on the Web pages.
파일 크기 62.18 KB
설치 횟수 188
현재 버전 0.1.6
최근 업데이트 2018-04-01
출시 날짜 2018-04-01
평점 4.00/5 총 5 개의 평점
개발자 Karate System
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "fontpecker",
    "version": "0.1.6",
    "manifest_version": 2,
    "description": "Easily get the CSS settings of texts on the Web pages.",
    "icons": {
        "16": "icons\/_icon_16.png",
        "32": "icons\/_icon_32.png",
        "64": "icons\/_icon_64.png",
        "128": "icons\/_icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "css\/style.css"
            ],
            "js": [
                "js\/jquery-1.11.2.min.js",
                "js\/asset.js",
                "js\/content.js"
            ]
        }
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icons\/icon_32.png",
        "default_title": ""
    },
    "permissions": [
        "activeTab",
        "clipboardWrite"
    ]
}