Webfont Previewer

This extension allows you to test webfonts out on any website and target which elements the fonts should be applied to.

Webfont Previewer란 무엇입니까?

Webfont Previewer은(는) JustinTheClouds에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension allows you to test webfonts out on any website and target which elements the fonts should be applied to."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Quickly test and preview out different web fonts while developing your websites.

Select a webfont from the list of fonts. Then choose the page's targets using CSS selectors. Then apply to see the webfont applied to current page's content.

Star your favorite webfonts to make them appear at the top of the list of fonts for quick use. Once you have the font you like, press the code "" button to copy the code to paste into your site's HTML for use.

**Once installed, any previously opened tabs must be refreshed to work properly**                    

확장 프로그램 기본 정보

이름 Webfont Previewer Webfont Previewer
ID ehmpabgeehikhdodemjoenbonjkdeopn
공식 URL https://chromewebstore.google.com/detail/webfont-previewer/ehmpabgeehikhdodemjoenbonjkdeopn
설명 This extension allows you to test webfonts out on any website and target which elements the fonts should be applied to.
파일 크기 607 KB
설치 횟수 714
현재 버전 1.2
최근 업데이트 2013-09-26
출시 날짜 2013-09-25
평점 3.29/5 총 7 개의 평점
개발자 JustinTheClouds
결제 유형 free
확장 프로그램 웹 사이트 http://justintheclouds.com
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Webfont Previewer",
    "description": "This extension allows you to test webfonts out on any website and target which elements the fonts should be applied to.",
    "version": "1.2",
    "icons": {
        "16": "icon.png",
        "48": "icon-48.png",
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery.min.js",
                "content_scripts.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "jquery-2.0.3.min.map",
        "webfont.js",
        "fontmap.json"
    ],
    "permissions": [
        "tabs",
        "storage",
        "http:\/\/fonts.googleapis.com\/*",
        "https:\/\/googlefontdirectory.googlecode.com\/hg\/ofl\/*"
    ],
    "browser_action": {
        "default_icon": {
            "19": "icon.png",
            "38": "icon.png",
            "48": "icon.png"
        },
        "default_popup": "popup.html"
    }
}