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
官方網址 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"
    ]
}