Force MS Yahei Font Allowing Exceptions
Use MS Yahei font for all sites with exceptions that can be user-defined.
Was ist Force MS Yahei Font Allowing Exceptions?
Force MS Yahei Font Allowing Exceptions ist eine Chrome-Erweiterung, die von https://herohuyongtao.blogspot.com entwickelt wurde, und ihr Hauptmerkmal ist "Use MS Yahei font for all sites with exceptions that can be user-defined.".
Erweiterungsscreenshots
Force MS Yahei Font Allowing Exceptions-Erweiterungs-CRX-Datei herunterladen
Laden Sie Force MS Yahei Font Allowing Exceptions-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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".
Grundlegende Informationen zur Erweiterung
Name | Force MS Yahei Font Allowing Exceptions |
ID | dplldmamfgeklcbmjehjajfbafeimjaf |
Offizielle URL | https://chromewebstore.google.com/detail/force-ms-yahei-font-allow/dplldmamfgeklcbmjehjajfbafeimjaf |
Beschreibung | Use MS Yahei font for all sites with exceptions that can be user-defined. |
Dateigröße | 37.51 KB |
Installationsanzahl | 98 |
Aktuelle Version | 7.0.0 |
Letztes Update | 2019-12-26 |
Veröffentlichungsdatum | 2019-12-23 |
Bewertung | 4.33/5 Insgesamt 6 Bewertungen |
Entwickler | https://herohuyongtao.blogspot.com |
Zahlungsart | free |
Erweiterungswebsite | https://gitlab.com/herohuyongtao/force-msyahei-for-chrome |
Hilfeseite URL | https://gitlab.com/herohuyongtao/force-msyahei-for-chrome/issues |
Unterstützte Sprachen | 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 } } |