Glyph Imager - turn glyphs to images

Turn any font glyph into a png image

Glyph Imager - turn glyphs to images란 무엇입니까?

Glyph Imager - turn glyphs to images은(는) https://glyphimager.cookietroll.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Turn any font glyph into a png image"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Glyph Imager - turn glyphs to images 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Glyph Imager is here to enable you to save glyphs as images so that you can use them in your favorite image editing software, put them on your website and in general, do anything you can with an image.

Instructions: 
* click the Glyph Imager extension icon
* click the glyph you wish to save as an image
* when the image appears in the popup on the left side of the page - adjust the size and color to your liking (if needed)
* click the Save as PNG button

You're done!

Please contact us with feature requests and suggestions                    

확장 프로그램 기본 정보

이름 Glyph Imager - turn glyphs to images Glyph Imager - turn glyphs to images
ID onompcbgalpcjcogebjpnphokjicbneh
공식 URL https://chromewebstore.google.com/detail/glyph-imager-turn-glyphs/onompcbgalpcjcogebjpnphokjicbneh
설명 Turn any font glyph into a png image
파일 크기 69.37 KB
설치 횟수 276
현재 버전 0.0.10
최근 업데이트 2015-01-03
출시 날짜 2015-01-03
평점 3.50/5 총 2 개의 평점
개발자 https://glyphimager.cookietroll.com
결제 유형 free
확장 프로그램 웹 사이트 http://glyphimager.cookietroll.com/
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Glyph Imager - turn glyphs to images",
    "version": "0.0.10",
    "description": "Turn any font glyph into a png image",
    "icons": {
        "16": "images\/logo_128.png",
        "48": "images\/logo_128.png",
        "128": "images\/logo_128.png"
    },
    "browser_action": {
        "default_icon": "images\/logo_128.png",
        "default_title": "Click here and hover over the glyph to save it"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "libs\/jquery.min.js",
                "libs\/handlebars.js",
                "content.js"
            ],
            "css": [
                "views\/canvas.css"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "background.js",
            "tracker.js"
        ]
    },
    "permissions": [
        "tabs",
        "",
        "contextMenus",
        "downloads"
    ],
    "web_accessible_resources": [
        "*"
    ],
    "content_security_policy": "script-src 'self' https:\/\/cdn.mxpnl.com\/; object-src 'self'"
}