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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
    }
}