Dotsies
Converts all pages to use the Dotsies font.
Apa itu Dotsies?
Dotsies adalah ekstensi Chrome yang dikembangkan oleh Jaiden Mispy, dan fitur utamanya adalah "Converts all pages to use the Dotsies font.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Dotsies
Unduh file ekstensi Dotsies dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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/
Informasi Dasar Ekstensi
Nama | |
ID | lcelhifbbkanihndkglcfepchfdhblal |
URL Resmi | https://chromewebstore.google.com/detail/dotsies/lcelhifbbkanihndkglcfepchfdhblal |
Deskripsi | Converts all pages to use the Dotsies font. |
Ukuran File | 10.61 KB |
Jumlah Instalasi | 34 |
Versi Saat Ini | 1.0.1 |
Terakhir Diperbarui | 2014-12-20 |
Tanggal Publikasi | 2014-12-19 |
Penilaian | 5.00/5 Total 4 Penilaian |
Pengembang | Jaiden Mispy |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" ] } |