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 là gì?
Typography Analyzer là một tiện ích mở rộng Chrome được phát triển bởi lemehovskiy, và tính năng chính của nó là "Typography Analyzer is a Chrome extension that helps you assess the typography of web pages. It lets you view the computed…".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Typography Analyzer
Tải xuống các tệp mở rộng Typography Analyzer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Typography Analyzer |
ID | ommgjjglofcihoogjiibfgoeedcnkeib |
URL Chính Thức | https://chromewebstore.google.com/detail/typography-analyzer/ommgjjglofcihoogjiibfgoeedcnkeib |
Mô tả | Typography Analyzer is a Chrome extension that helps you assess the typography of web pages. It lets you view the computed… |
Kích Thước Tệp | 628 KB |
Số Lần Cài Đặt | 47 |
Phiên Bản Hiện Tại | 1.0.1 |
Cập Nhật Lần Cuối | 2023-10-20 |
Ngày Phát Hành | 2023-10-18 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | lemehovskiy |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |