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 |
电子邮箱 | [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" } } |