Dotsies
Converts all pages to use the Dotsies font.
Dotsiesคืออะไร?
Dotsies เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Jaiden Mispy และคุณลักษณะหลักของมันคือ "Converts all pages to use the Dotsies font."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Dotsies
ดาวน์โหลดไฟล์ส่วนขยาย Dotsies ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Switches all websites to use the Dotsies font, an alternative to the Latin alphabet optimized for speed-reading. Can be easily toggled for learning purposes. http://dotsies.org/
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | lcelhifbbkanihndkglcfepchfdhblal |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/dotsies/lcelhifbbkanihndkglcfepchfdhblal |
คำอธิบาย | Converts all pages to use the Dotsies font. |
ขนาดไฟล์ | 10.61 KB |
จำนวนการติดตั้ง | 34 |
เวอร์ชันปัจจุบัน | 1.0.1 |
อัปเดตครั้งล่าสุด | 2014-12-20 |
วันที่เผยแพร่ | 2014-12-19 |
คะแนน | 5.00/5 รวมทั้งหมด 4 คะแนน |
ผู้พัฒนา | Jaiden Mispy |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Converts all pages to use the Dotsies font.", "name": "Dotsies", "manifest_version": 2, "version": "1.0.1", "background": { "scripts": [ "main.js" ] }, "icons": { "128": "dotsies128.png" }, "content_scripts": [ { "all_frames": true, "js": [ "inject.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_start" } ], "browser_action": { "default_icon": "dotsies128.png", "default_title": "Toggle Dotsies" }, "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "web_accessible_resources": [ "dotsies.css", "Dotsies.ttf" ] } |