Typography Analyzer
Typography Analyzer is a Chrome extension that helps you assess the typography of web pages. It lets you view the computed…
Typography Analyzerとは何ですか?
Typography Analyzerはlemehovskiyによって開発されたChromeの拡張機能で、その主な機能は「Typography Analyzer is a Chrome extension that helps you assess the typography of web pages. It lets you view the computed…」です。
拡張機能のスクリーンショット
Typography Analyzer拡張機能のCRXファイルをダウンロード
Typography Analyzer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Typography Analyzer is a Chrome extension that helps you assess the typography of web pages. It lets you view the computed properties of font sizes, font families, font weights, and colors in use. Additionally, it offers a rating for overall typography usage and the ability to highlight specific typography groups. This extension is a handy tool for those interested in understanding website typography.
拡張機能の基本情報
名前 | Typography Analyzer |
ID | ommgjjglofcihoogjiibfgoeedcnkeib |
公式URL | https://chromewebstore.google.com/detail/typography-analyzer/ommgjjglofcihoogjiibfgoeedcnkeib |
説明 | Typography Analyzer is a Chrome extension that helps you assess the typography of web pages. It lets you view the computed… |
ファイルサイズ | 628 KB |
インストール数 | 47 |
現在のバージョン | 1.0.1 |
最終更新日 | 2023-10-20 |
公開日 | 2023-10-18 |
評価 | 5.00/5 合計 2 レビュー |
開発者 | lemehovskiy |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Typography Analyzer", "description": "", "version": "1.0.1", "manifest_version": 3, "action": { "default_popup": "index.html", "default_title": "Open the popup" }, "icons": { "16": "logo16.png", "32": "logo32.png", "48": "logo48.png", "128": "logo128.png" }, "permissions": [ "activeTab", "storage", "background" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ ".\/static\/js\/content.js" ], "run_at": "document_start" } ], "background": { "service_worker": ".\/static\/js\/service-worker.js", "run_at": "document_start", "type": "module" } } |