Font Inspector

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

Font Inspector là gì?

Font Inspector là một tiện ích mở rộng Chrome được phát triển bởi MeryDev, và tính năng chính của nó là "Click on any HTML element to get the font info in a popup!".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Font Inspector

Tải xuống các tệp mở rộng Font Inspector dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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).                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Font Inspector Font Inspector
ID kgekdppfhdacjmnogfkklnljiglcphip
URL Chính Thức https://chromewebstore.google.com/detail/font-inspector/kgekdppfhdacjmnogfkklnljiglcphip
Mô tả Click on any HTML element to get the font info in a popup!
Kích Thước Tệp 30.26 KB
Số Lần Cài Đặt 8,422
Phiên Bản Hiện Tại 0.1.8
Cập Nhật Lần Cuối 2024-01-18
Ngày Phát Hành 2018-07-31
Đánh Giá 2.20/5 Tổng số 5 Đánh Giá
Nhà Phát Triển MeryDev
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://mybrowseraddon.com/font-inspector.html
URL Trang Trợ Giúp https://mybrowseraddon.com/font-inspector.html
URL Trang Chính Sách Bảo Mật https://add0n.com/policies/mery.dev.txt
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}