Force MS Yahei Font Allowing Exceptions
Use MS Yahei font for all sites with exceptions that can be user-defined.
Co to jest Force MS Yahei Font Allowing Exceptions?
Force MS Yahei Font Allowing Exceptions to rozszerzenie Chrome opracowane przez https://herohuyongtao.blogspot.com, a jego główną funkcją jest „Use MS Yahei font for all sites with exceptions that can be user-defined.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Force MS Yahei Font Allowing Exceptions
Pobierz pliki rozszerzeń Force MS Yahei Font Allowing Exceptions w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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".
Podstawowe informacje o rozszerzeniu
Nazwa | Force MS Yahei Font Allowing Exceptions |
ID | dplldmamfgeklcbmjehjajfbafeimjaf |
Oficjalny URL | https://chromewebstore.google.com/detail/force-ms-yahei-font-allow/dplldmamfgeklcbmjehjajfbafeimjaf |
Opis | Use MS Yahei font for all sites with exceptions that can be user-defined. |
Rozmiar pliku | 37.51 KB |
Liczba instalacji | 98 |
Aktualna Wersja | 7.0.0 |
Ostatnia Aktualizacja | 2019-12-26 |
Data Publikacji | 2019-12-23 |
Ocena | 4.33/5 Łącznie 6 Oceny |
Deweloper | https://herohuyongtao.blogspot.com |
Typ Płatności | free |
Strona Rozszerzenia | https://gitlab.com/herohuyongtao/force-msyahei-for-chrome |
Adres URL Strony Pomocy | https://gitlab.com/herohuyongtao/force-msyahei-for-chrome/issues |
Obsługiwane Języki | 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 } } |