change all UI fonts
Changes all the UI font to a user-given font.
change all UI fonts क्या है?
change all UI fonts https://virutcham.ca द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Changes all the UI font to a user-given font."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में change all UI fonts एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" ] } |