Force MS Yahei Font Allowing Exceptions
Use MS Yahei font for all sites with exceptions that can be user-defined.
Что такое Force MS Yahei Font Allowing Exceptions?
Force MS Yahei Font Allowing Exceptions - это расширение Chrome, разработанное https://herohuyongtao.blogspot.com, и его основная функция - "Use MS Yahei font for all sites with exceptions that can be user-defined.".
Снимки экрана расширения
Скачать файл CRX расширения Force MS Yahei Font Allowing Exceptions
Скачайте файлы расширений Force MS Yahei Font Allowing Exceptions в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This Chrome plugin will enable you to force using Microsoft Yahei font for all webistes allowing exceptions. These exceptions can be user defined in "Options".
Основная информация о расширении
Название | Force MS Yahei Font Allowing Exceptions |
ID | dplldmamfgeklcbmjehjajfbafeimjaf |
Официальный URL | https://chromewebstore.google.com/detail/force-ms-yahei-font-allow/dplldmamfgeklcbmjehjajfbafeimjaf |
Описание | Use MS Yahei font for all sites with exceptions that can be user-defined. |
Размер файла | 37.51 KB |
Количество установок | 98 |
Текущая Версия | 7.0.0 |
Последнее Обновление | 2019-12-26 |
Дата публикации | 2019-12-23 |
Рейтинг | 4.33/5 Всего 6 оценок |
Разработчик | https://herohuyongtao.blogspot.com |
Тип оплаты | free |
Официальный сайт расширения | https://gitlab.com/herohuyongtao/force-msyahei-for-chrome |
URL страницы помощи | https://gitlab.com/herohuyongtao/force-msyahei-for-chrome/issues |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Force MS Yahei Font Allowing Exceptions", "description": "Use MS Yahei font for all sites with exceptions that can be user-defined.", "version": "7.0.0", "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "font.js" ], "run_at": "document_start" } ], "web_accessible_resources": [ "font.css" ], "permissions": [ "storage" ], "options_ui": { "page": "options\/index.html", "chrome_style": true } } |