Font Inspector
Click on any HTML element to get the font info in a popup!
Font Inspectorคืออะไร?
Font Inspector เป็นส่วนขยายของ Chrome ที่พัฒนาโดย MeryDev และคุณลักษณะหลักของมันคือ "Click on any HTML element to get the font info in a popup!"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Font Inspector
ดาวน์โหลดไฟล์ส่วนขยาย Font Inspector ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Font Inspector is an extension that helps you easily inspect all fonts within a website. To start working with this addon, simply click on the toolbar icon once to open the in-page UI. Then, click on any HTML element that you want to see the font info. Please note that, as long as the UI is open, no links (or other functions) on the page will work. The in-page UI has several pieces of information related to the selected font such as font size, style, color, family, etc. Besides, there is information about the current tab such as id, width, height, title, and URL. If you click on the toolbar icon or press the escape button on your keyboard, the in-page UI will disappear and all the links within the page work as normal. To report bugs, please fill the bug report form on the addon's homepage (https://mybrowseraddon.com/font-inspector.html).
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Font Inspector |
ID | kgekdppfhdacjmnogfkklnljiglcphip |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/font-inspector/kgekdppfhdacjmnogfkklnljiglcphip |
คำอธิบาย | Click on any HTML element to get the font info in a popup! |
ขนาดไฟล์ | 30.26 KB |
จำนวนการติดตั้ง | 8,422 |
เวอร์ชันปัจจุบัน | 0.1.8 |
อัปเดตครั้งล่าสุด | 2024-01-18 |
วันที่เผยแพร่ | 2018-07-31 |
คะแนน | 2.20/5 รวมทั้งหมด 5 คะแนน |
ผู้พัฒนา | MeryDev |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://mybrowseraddon.com/font-inspector.html |
URL หน้าช่วยเหลือ | https://mybrowseraddon.com/font-inspector.html |
URL หน้านโยบายความเป็นส่วนตัว | https://add0n.com/policies/mery.dev.txt |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "0.1.8", "manifest_version": 3, "offline_enabled": true, "name": "Font Inspector", "homepage_url": "https:\/\/mybrowseraddon.com\/font-inspector.html", "description": "Click on any HTML element to get the font info in a popup!", "commands": { "_execute_action": [] }, "background": { "service_worker": "background.js" }, "permissions": [ "storage", "activeTab", "scripting" ], "web_accessible_resources": [ { "matches": [ "*:\/\/*\/*" ], "resources": [ "data\/content_script\/resources\/popup.css" ] } ], "action": { "default_title": "Font Inspector", "default_icon": { "16": "data\/icons\/16.png", "32": "data\/icons\/32.png", "48": "data\/icons\/48.png", "64": "data\/icons\/64.png" } }, "icons": { "16": "data\/icons\/16.png", "32": "data\/icons\/32.png", "48": "data\/icons\/48.png", "64": "data\/icons\/64.png", "128": "data\/icons\/128.png" } } |