FontDetector

Display font information on hover over text elements.

FontDetectorとは何ですか?

FontDetectorはislandgisionによって開発されたChromeの拡張機能で、その主な機能は「Display font information on hover over text elements.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

FontDetector拡張機能のCRXファイルをダウンロード

FontDetector拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Run plugin:
- win: Shift + Alt + X
- mac: Shift + Alt + X

Close plugin:
- win: ESC
- mac: ESC

————— Divider ——————

FontDetector is a tool powered by myself and GPT-4, designed to help you view web fonts by hovering text. You can easily explore your favorite font families, weights, sizes, letter spacing, line heights, and text alignments.

Hover, detect. As easy as 1-2. An essential tool for any web designer or front-end developer.

————— Divider ——————

1.1.8
feat: Updated shortcut keys for activating FontDetector, Now you could use 
- win: Shift + Alt + X
- mac: Shift + Alt + X

1.1.7
feat: Updated shortcut keys for activating FontDetector, Now you could use 
- win: Ctrl + Shift + Z
- mac: Command + Shift + Z

1.1.6
fixed: Gray out the fonts on the website when the plugin is activated

1.1.5
fixed: Body was injected into 18px padding

1.1.4
feat: Removed tabs permissions                    

拡張機能の基本情報

名前 FontDetector FontDetector
ID jphgedmdokkhlllaibcbndaccmdcckfe
公式URL https://chromewebstore.google.com/detail/fontdetector/jphgedmdokkhlllaibcbndaccmdcckfe
説明 Display font information on hover over text elements.
ファイルサイズ 889 KB
インストール数 192
現在のバージョン 1.1.8
最終更新日 2023-12-01
公開日 2023-04-18
評価 5.00/5 合計 1 レビュー
開発者 islandgision
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "FontDetector",
    "version": "1.1.8",
    "description": "Display font information on hover over text elements.",
    "permissions": [
        "activeTab"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.js"
            ],
            "all_frames": true
        }
    ],
    "icons": {
        "128": "icon.png"
    },
    "commands": {
        "toggle_font_detector": {
            "suggested_key": {
                "default": "Shift+Alt+X",
                "mac": "Shift+Alt+X"
            },
            "description": "Toggle font detector"
        }
    }
}