change all UI fonts
Changes all the UI font to a user-given font.
ما هو change all UI fonts؟
change all UI fonts هو إضافة Chrome تم تطويرها بواسطة https://virutcham.ca، والميزة الرئيسية لها هي "Changes all the UI font to a user-given font.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة change all UI fonts
قم بتنزيل ملفات الامتداد change all UI fonts بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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.
معلومات أساسية عن التمديد
الاسم | change all UI fonts |
ID | loiejdbcheeiipmakhghinclmpafiiel |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/change-all-ui-fonts/loiejdbcheeiipmakhghinclmpafiiel |
الوصف | Changes all the UI font to a user-given font. |
حجم الملف | 78.19 KB |
عدد التثبيتات | 6,108 |
النسخة الحالية | 1.4.2 |
آخر تحديث | 2021-01-07 |
تاريخ النشر | 2020-05-21 |
تقييم | 4.51/5 مجموع تقييمات 59 |
المطور | https://virutcham.ca |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | 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" ] } |