Font Inspector

Click on any HTML element to get the font info in a popup!

什麼是Font Inspector?

Font Inspector是由MeryDev開發的Chrome擴展程式,該擴展的主要功能是“Click on any HTML element to get the font info in a popup!”。

擴展截圖

screenshot
screenshot

下載Font Inspector擴展crx文件

下載Font Inspector擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Font Inspector is an extension that helps you easily inspect all fonts within a website.

To start working with this addon, simply click on the toolbar icon once to open the in-page UI. Then, click on any HTML element that you want to see the font info.

Please note that, as long as the UI is open, no links (or other functions) on the page will work. The in-page UI has several pieces of information related to the selected font such as font size, style, color, family, etc. Besides, there is information about the current tab such as id, width, height, title, and URL. If you click on the toolbar icon or press the escape button on your keyboard, the in-page UI will disappear and all the links within the page work as normal.

To report bugs, please fill the bug report form on the addon's homepage (https://mybrowseraddon.com/font-inspector.html).                    

擴展基本資訊

名稱 Font Inspector Font Inspector
ID kgekdppfhdacjmnogfkklnljiglcphip
官方網址 https://chromewebstore.google.com/detail/font-inspector/kgekdppfhdacjmnogfkklnljiglcphip
簡介 Click on any HTML element to get the font info in a popup!
檔案大小 30.26 KB
安裝次數 8,422
目前版本 0.1.8
更新時間 2024-01-18
上架時間 2018-07-31
評分 2.20/5 共 5 次評分
開發者 MeryDev
電子郵箱 [email protected]
付費類型 free
擴展官網 https://mybrowseraddon.com/font-inspector.html
說明頁面URL https://mybrowseraddon.com/font-inspector.html
隱私政策頁面URL https://add0n.com/policies/mery.dev.txt
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.1.8",
    "manifest_version": 3,
    "offline_enabled": true,
    "name": "Font Inspector",
    "homepage_url": "https:\/\/mybrowseraddon.com\/font-inspector.html",
    "description": "Click on any HTML element to get the font info in a popup!",
    "commands": {
        "_execute_action": []
    },
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage",
        "activeTab",
        "scripting"
    ],
    "web_accessible_resources": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "resources": [
                "data\/content_script\/resources\/popup.css"
            ]
        }
    ],
    "action": {
        "default_title": "Font Inspector",
        "default_icon": {
            "16": "data\/icons\/16.png",
            "32": "data\/icons\/32.png",
            "48": "data\/icons\/48.png",
            "64": "data\/icons\/64.png"
        }
    },
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png"
    }
}