Dotsies
Converts all pages to use the Dotsies font.
Cos'è Dotsies?
Dotsies è un'estensione di Chrome sviluppata da Jaiden Mispy, e la sua funzione principale è "Converts all pages to use the Dotsies font.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Dotsies
Scarica i file di estensione Dotsies in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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/
Informazioni di Base sull'Estensione
Nome | |
ID | lcelhifbbkanihndkglcfepchfdhblal |
URL Ufficiale | https://chromewebstore.google.com/detail/dotsies/lcelhifbbkanihndkglcfepchfdhblal |
Descrizione | Converts all pages to use the Dotsies font. |
Dimensione del File | 10.61 KB |
Conteggio Installazioni | 34 |
Versione Corrente | 1.0.1 |
Ultimo Aggiornamento | 2014-12-20 |
Data di Pubblicazione | 2014-12-19 |
Valutazione | 5.00/5 Totale 4 Valutazioni |
Sviluppatore | Jaiden Mispy |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } |