Instant Font
Instantly switch the font of current page using Google Fonts.
Что такое Instant Font?
Instant Font - это расширение Chrome, разработанное poe.422, и его основная функция - "Instantly switch the font of current page using Google Fonts.".
Снимки экрана расширения
Скачать файл CRX расширения Instant Font
Скачайте файлы расширений Instant Font в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
You can instantly switch current page's font to Google Fonts' web font. Also, you can input CSS selector to specify element where you want to apply font. Instant Font gonna help your web design/development work flow!
Основная информация о расширении
Название | |
ID | mmodigjkaccealcndhpkmleiahmickcf |
Официальный URL | https://chrome.google.com/webstore/detail/instant-font/mmodigjkaccealcndhpkmleiahmickcf |
Описание | Instantly switch the font of current page using Google Fonts. |
Размер файла | 102 KB |
Количество установок | 405 |
Текущая Версия | 1.1 |
Последнее Обновление | 2016-11-23 |
Дата публикации | 2016-11-23 |
Рейтинг | 1.80/5 Всего 5 оценок |
Разработчик | poe.422 |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Instant Font", "version": "1.1", "permissions": [ "tabs" ], "description": "Instantly switch the font of current page using Google Fonts.", "icons": { "128": "images\/icon128.png" }, "author": "Masahiro Harada", "browser_action": { "default_icon": { "19": "images\/icon19.png", "38": "images\/icon38.png" }, "default_title": "Instant Font", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/lib\/webfont.js", "js\/build\/content_scripts.js" ] } ] } |