Font Picker

A simple helper to identify font details from any website

Font Picker란 무엇입니까?

Font Picker은(는) Paul Krishnamurthy에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A simple helper to identify font details from any website"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        ** IMPORTANT: ONCE YOU INSTALL THE EXTENSION, YOU NEED TO RELOAD YOUR TABS FOR EVERYTHING TO WORK**

Font Picker is a clean and simple tool for identifying fonts and their details on any website.

Once you install the extension, you will have the ability to right click on any text and view its font details. Clicking the "Font Details" option will open up a pop up with all the information you need about that font. This method is much faster and nicer than having to go and personally inspect the source code.

Enjoy!                    

확장 프로그램 기본 정보

이름 Font Picker Font Picker
ID mmjbimgpcbaegjiieojddickpjbdkeej
공식 URL https://chromewebstore.google.com/detail/font-picker/mmjbimgpcbaegjiieojddickpjbdkeej
설명 A simple helper to identify font details from any website
파일 크기 358 KB
설치 횟수 71,503
현재 버전 1.0.5
최근 업데이트 2021-08-26
출시 날짜 2017-11-18
평점 3.06/5 총 54 개의 평점
개발자 Paul Krishnamurthy
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://paulkr.com/
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Font Picker",
    "short_name": "FP",
    "description": "A simple helper to identify font details from any website",
    "version": "1.0.5",
    "author": "Paul Krishnamurthy",
    "homepage_url": "https:\/\/paulkr.com\/",
    "permissions": [
        "contextMenus",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "activeTab"
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "manifest_version": 2,
    "icons": {
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "browser_action": {
        "default_icon": "icons\/icon128.png",
        "default_title": "Font Picker",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/jquery.min.js",
                "js\/sweetalert.min.js",
                "js\/content.js"
            ],
            "css": [
                "styles\/sweetalert.css",
                "styles\/custom.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "logo.png",
        "background.png"
    ]
}