OpenDyslexic Font for Chrome
Change the font of web pages to OpenDyslexic Font
OpenDyslexic Font for Chrome là gì?
OpenDyslexic Font for Chrome là một tiện ích mở rộng Chrome được phát triển bởi opendyslexicfont, và tính năng chính của nó là "Change the font of web pages to OpenDyslexic Font".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng OpenDyslexic Font for Chrome
Tải xuống các tệp mở rộng OpenDyslexic Font for Chrome dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
OpenDyslexic Font Changer is a Chrome extension that makes reading on the web easier for people with dyslexia. By changing the font of web pages to OpenDyslexic, a typeface designed to improve readability for readers with dyslexia, this extension helps to reduce the stress and frustration often associated with reading on the web. With this extension, you can enable or disable the OpenDyslexic font with a simple toggle switch. You can also select the font style you prefer from a dropdown menu, including regular, bold, and italic. OpenDyslexic Font Changer works on any website, and you can customize the font settings to your liking. The extension is easy to use and helps make reading on the web more accessible for everyone. Whether you have dyslexia or just find reading on the web challenging, OpenDyslexic Font Changer can help make the reading experience more comfortable and enjoyable. Try OpenDyslexic Font Changer today and experience the benefits of OpenDyslexic for yourself!
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | OpenDyslexic Font for Chrome |
ID | gcflfnendjincoakmpkdgkocaoojjnbc |
URL Chính Thức | https://chromewebstore.google.com/detail/opendyslexic-font-for-chr/gcflfnendjincoakmpkdgkocaoojjnbc |
Mô tả | Change the font of web pages to OpenDyslexic Font |
Kích Thước Tệp | 134 KB |
Số Lần Cài Đặt | 728 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2023-05-02 |
Ngày Phát Hành | 2023-05-02 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | opendyslexicfont |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "OpenDyslexic Font for Chrome", "version": "1.0", "description": "Change the font of web pages to OpenDyslexic Font", "manifest_version": 3, "permissions": [ "storage", "activeTab" ], "action": { "default_popup": "popup.html", "default_icon": { "48": "icon48.png" } }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "content.js" ], "run_at": "document_idle" } ], "web_accessible_resources": [ { "resources": [ "fonts\/*.otf" ], "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ] } ], "icons": { "48": "icon48.png", "128": "icon128.png" } } |