change all UI fonts
Changes all the UI font to a user-given font.
Qu'est-ce que change all UI fonts ?
change all UI fonts est une extension Chrome développée par https://virutcham.ca, et sa fonction principale est "Changes all the UI font to a user-given font.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension change all UI fonts
Téléchargez les fichiers d'extension change all UI fonts au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
Changes all the font-faces on all the web sites to a user given local font. Enter your desired font in the options by clicking the extension icon. Please note that this will change all the fonts of all elements, meaning Font-Awesome or any other sites that facilititate icons using fonts will also have their font changed. This will render those graphics as squares. I made this as a simple extension to force all the fonts for simple sites, so your mileage may vary. Thanks for understanding. Source can be found here: https://github.com/dsivasuthan/change-all-ui-fonts Please leave your feedback. Thank you.
Informations de Base sur l'Extension
Nom | change all UI fonts |
ID | loiejdbcheeiipmakhghinclmpafiiel |
URL Officiel | https://chromewebstore.google.com/detail/change-all-ui-fonts/loiejdbcheeiipmakhghinclmpafiiel |
Description | Changes all the UI font to a user-given font. |
Taille du Fichier | 78.19 KB |
Nombre d'Installations | 6,108 |
Version Actuelle | 1.4.2 |
Dernière Mise à Jour | 2021-01-07 |
Date de Publication | 2020-05-21 |
Évaluation | 4.51/5 Total 59 Évaluations |
Développeur | https://virutcham.ca |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "content_scripts": [ { "all_frames": true, "exclude_globs": [], "include_globs": [ "*" ], "js": [ "foo.js", "scripts.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_start" } ], "description": "Changes all the UI font to a user-given font.", "manifest_version": 2, "name": "change all UI fonts", "options_page": "options.html", "version": "1.4.2", "browser_action": { "default_icon": "icon.png", "default_title": "change font family", "default_popup": "options.html" }, "icons": { "128": "icon.png" }, "background": { "page": "background.html" }, "permissions": [ "storage" ] } |