Font Fixer
Changes all the fonts on your web pages so they're readable
Font Fixerคืออะไร?
Font Fixer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย HMH Technology Labs และคุณลักษณะหลักของมันคือ "Changes all the fonts on your web pages so they're readable"
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Font Fixer
ดาวน์โหลดไฟล์ส่วนขยาย Font Fixer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Font Fixer |
ID | lnfpnnigpfkkimhgdmoodbfojnipgdjj |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/font-fixer/lnfpnnigpfkkimhgdmoodbfojnipgdjj |
คำอธิบาย | Changes all the fonts on your web pages so they're readable |
ขนาดไฟล์ | 41.06 KB |
จำนวนการติดตั้ง | 29 |
เวอร์ชันปัจจุบัน | 1 |
อัปเดตครั้งล่าสุด | 2016-04-17 |
วันที่เผยแพร่ | 2016-04-17 |
คะแนน | 5.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | HMH Technology Labs |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Font Fixer", "version": "1", "manifest_version": 2, "description": "Changes all the fonts on your web pages so they're readable", "homepage_url": "http:\/\/students.cse.tamu.edu\/habeebh\/", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "default_locale": "en", "background": { "scripts": [ "src\/bg\/background.js" ], "persistent": true }, "page_action": { "default_icon": "icons\/icon19.png", "default_title": "page action demo" }, "permissions": [ "tabs", "https:\/\/*\/*" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [ "src\/inject\/inject.css" ] }, { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "src\/inject\/inject.js" ] } ] } |