Font Overwrite
Overwrites fonts of web-sites.
Что такое Font Overwrite?
Font Overwrite - это расширение Chrome, разработанное minostar, и его основная функция - "Overwrites fonts of web-sites.".
Снимки экрана расширения
Скачать файл CRX расширения Font Overwrite
Скачайте файлы расширений Font Overwrite в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
If you dislike specific font, use this. (ex. Gulim, Comic Sans)
Основная информация о расширении
Название | Font Overwrite |
ID | efnhmidkajhnpdgfdpfnioiibmdjnkmn |
Официальный URL | https://chromewebstore.google.com/detail/font-overwrite/efnhmidkajhnpdgfdpfnioiibmdjnkmn |
Описание | Overwrites fonts of web-sites. |
Размер файла | 47.6 KB |
Количество установок | 605 |
Текущая Версия | 0.0.2 |
Последнее Обновление | 2017-10-14 |
Дата публикации | 2017-10-14 |
Рейтинг | 4.33/5 Всего 27 оценок |
Разработчик | minostar |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Font Overwrite", "description": "Overwrites fonts of web-sites.", "version": "0.0.2", "permissions": [ "storage" ], "options_page": "options.html", "browser_action": { "default_popup": "options.html" }, "content_scripts": [ { "exclude_globs": [], "include_globs": [ "*" ], "js": [ "jquery-3.2.1.min.js", "content.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/\/*\/*" ], "run_at": "document_start", "all_frames": true } ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } } |