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
公式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
Eメール [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"
    }
}