Fontanello

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

什麼是Fontanello?

Fontanello是由Fred Bergman開發的Chrome擴展程式,該擴展的主要功能是“A browser extension that lets you display the basic typographic styles of a text by right-clicking it.”。

擴展截圖

screenshot
screenshot
screenshot

下載Fontanello擴展crx文件

下載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
官方網址 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"
    }
}