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ファイルをダウンロード

Font Picker拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        ** 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
Eメール [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"
    ]
}