Font Inspector
Click on any HTML element to get the font info in a popup!
Font Inspector란 무엇입니까?
Font Inspector은(는) MeryDev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Click on any HTML element to get the font info in a popup!"입니다.
확장 프로그램 스크린샷
Font Inspector 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } } |