Fontanello

A browser extension that lets you display the basic typographic styles of a text by right-clicking it.

Fontanello là gì?

Fontanello là một tiện ích mở rộng Chrome được phát triển bởi Fred Bergman, và tính năng chính của nó là "A browser extension that lets you display the basic typographic styles of a text by right-clicking it.".

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

screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng Fontanello 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

                        Fontanello makes it super easy to inspect typography on a webpage. It will show you information about typeface, weight, size, color and some other less used CSS-properties. It also show information about contrast for selected text.                    

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

Tên Fontanello Fontanello
ID jdlhfjlpaijjhklfadlhbbmpjfddkglc
URL Chính Thức https://chromewebstore.google.com/detail/fontanello/jdlhfjlpaijjhklfadlhbbmpjfddkglc
Mô tả A browser extension that lets you display the basic typographic styles of a text by right-clicking it.
Kích Thước Tệp 8.85 KB
Số Lần Cài Đặt 70,000
Phiên Bản Hiện Tại 1.2.2
Cập Nhật Lần Cuối 2021-05-02
Ngày Phát Hành 2020-02-22
Đánh Giá 4.50/5 Tổng số 38 Đánh Giá
Nhà Phát Triển Fred Bergman
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://fontanello.app/
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Fontanello",
    "version": "1.2.2",
    "description": "A browser extension that lets you display the basic typographic styles of a text by right-clicking it.",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "activeTab",
        "contextMenus"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "client.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "minimum_chrome_version": "45",
    "manifest_version": 2,
    "icons": {
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    }
}