Font Fixer
Changes all the fonts on your web pages so they're readable
Что такое Font Fixer?
Font Fixer - это расширение Chrome, разработанное HMH Technology Labs, и его основная функция - "Changes all the fonts on your web pages so they're readable".
Скачать файл CRX расширения Font Fixer
Скачайте файлы расширений Font Fixer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Основная информация о расширении
Название | Font Fixer |
ID | lnfpnnigpfkkimhgdmoodbfojnipgdjj |
Официальный URL | https://chromewebstore.google.com/detail/font-fixer/lnfpnnigpfkkimhgdmoodbfojnipgdjj |
Описание | Changes all the fonts on your web pages so they're readable |
Размер файла | 41.06 KB |
Количество установок | 29 |
Текущая Версия | 1 |
Последнее Обновление | 2016-04-17 |
Дата публикации | 2016-04-17 |
Рейтинг | 5.00/5 Всего 2 оценок |
Разработчик | HMH Technology Labs |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Font Fixer", "version": "1", "manifest_version": 2, "description": "Changes all the fonts on your web pages so they're readable", "homepage_url": "http:\/\/students.cse.tamu.edu\/habeebh\/", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "default_locale": "en", "background": { "scripts": [ "src\/bg\/background.js" ], "persistent": true }, "page_action": { "default_icon": "icons\/icon19.png", "default_title": "page action demo" }, "permissions": [ "tabs", "https:\/\/*\/*" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [ "src\/inject\/inject.css" ] }, { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "src\/inject\/inject.js" ] } ] } |