Fontanello

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

Fontanelloคืออะไร?

Fontanello เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Fred Bergman และคุณลักษณะหลักของมันคือ "A browser extension that lets you display the basic typographic styles of a text by right-clicking it."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Fontanello

ดาวน์โหลดไฟล์ส่วนขยาย Fontanello ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Fontanello Fontanello
ID jdlhfjlpaijjhklfadlhbbmpjfddkglc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/fontanello/jdlhfjlpaijjhklfadlhbbmpjfddkglc
คำอธิบาย A browser extension that lets you display the basic typographic styles of a text by right-clicking it.
ขนาดไฟล์ 8.85 KB
จำนวนการติดตั้ง 70,000
เวอร์ชันปัจจุบัน 1.2.2
อัปเดตครั้งล่าสุด 2021-05-02
วันที่เผยแพร่ 2020-02-22
คะแนน 4.50/5 รวมทั้งหมด 38 คะแนน
ผู้พัฒนา Fred Bergman
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://fontanello.app/
ภาษาที่รองรับ 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"
    }
}