Font Inspector
Click on any HTML element to get the font info in a popup!
¿Qué es Font Inspector?
Font Inspector es una extensión de Chrome desarrollada por MeryDev, y su función principal es "Click on any HTML element to get the font info in a popup!".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Font Inspector
Descarga archivos de extensión Font Inspector en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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).
Información Básica de la Extensión
Nombre | Font Inspector |
ID | kgekdppfhdacjmnogfkklnljiglcphip |
URL Oficial | https://chromewebstore.google.com/detail/font-inspector/kgekdppfhdacjmnogfkklnljiglcphip |
Descripción | Click on any HTML element to get the font info in a popup! |
Tamaño del Archivo | 30.26 KB |
Cantidad de Instalaciones | 8,422 |
Versión Actual | 0.1.8 |
Última Actualización | 2024-01-18 |
Fecha de Publicación | 2018-07-31 |
Calificación | 2.20/5 Total de 5 Calificaciones |
Desarrollador | MeryDev |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://mybrowseraddon.com/font-inspector.html |
URL de la Página de Ayuda | https://mybrowseraddon.com/font-inspector.html |
URL de la Página de Política de Privacidad | https://add0n.com/policies/mery.dev.txt |
Idiomas Soportados | 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" } } |