Detect Font
Detect fonts used in web pages
Что такое Detect Font?
Detect Font - это расширение Chrome, разработанное @hmarr, и его основная функция - "Detect fonts used in web pages".
Снимки экрана расширения
Скачать файл CRX расширения Detect Font
Скачайте файлы расширений Detect Font в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
"What's that gorgeous font?", you ask... Well, now you'll know! Click the icon in the browser toolbar to activate font detection mode, and hover over parts of the page to reveal which font is being used. Unlike other font-detecting extensions, this won't ask for full access to every website you visit. It's only activated when you press the button in the toolbar, so you stay in control of your privacy.
Основная информация о расширении
Название | Detect Font |
ID | mpljfgaicpdodihppfoolcididbkalce |
Официальный URL | https://chromewebstore.google.com/detail/detect-font/mpljfgaicpdodihppfoolcididbkalce |
Описание | Detect fonts used in web pages |
Размер файла | 12.29 KB |
Количество установок | 1,677 |
Текущая Версия | 1.1 |
Последнее Обновление | 2023-10-19 |
Дата публикации | 2020-04-10 |
Рейтинг | 5.00/5 Всего 1 оценок |
Разработчик | @hmarr |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/hmarr/chrome-detect-font |
URL страницы помощи | https://github.com/hmarr/chrome-detect-font/issues |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Detect Font", "version": "1.1", "author": "Harry Marr", "description": "Detect fonts used in web pages", "homepage_url": "https:\/\/github.com\/hmarr\/chrome-detect-font", "icons": { "16": "images\/icon-16.png", "24": "images\/icon-24.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "background": { "service_worker": "background.js" }, "permissions": [ "contextMenus", "scripting", "activeTab" ], "action": { "default_icon": { "16": "images\/icon-16.png", "24": "images\/icon-24.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png" } } } |