Dotsies
Converts all pages to use the Dotsies font.
Wat is Dotsies?
Dotsies is een Chrome-extensie ontwikkeld door Jaiden Mispy, en de belangrijkste functie is "Converts all pages to use the Dotsies font.".
Extensie Screenshots
Download het CRX-bestand van de extensie Dotsies
Download Dotsies-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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/
Basisinformatie over de Extensie
Naam | |
ID | lcelhifbbkanihndkglcfepchfdhblal |
Officiële URL | https://chromewebstore.google.com/detail/dotsies/lcelhifbbkanihndkglcfepchfdhblal |
Beschrijving | Converts all pages to use the Dotsies font. |
Bestandsgrootte | 10.61 KB |
Aantal Installaties | 34 |
Huidige Versie | 1.0.1 |
Laatst Bijgewerkt | 2014-12-20 |
Publicatiedatum | 2014-12-19 |
Beoordeling | 5.00/5 Totaal 4 Beoordelingen |
Ontwikkelaar | Jaiden Mispy |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } |