Dotsies
Converts all pages to use the Dotsies font.
Vad är Dotsies?
Dotsies är en Chrome-tillägg utvecklad av Jaiden Mispy, och dess huvudfunktion är "Converts all pages to use the Dotsies font.".
Tilläggsskärmbilder
Ladda ner Dotsies-förlängningens CRX-fil
Ladda ner Dotsies-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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/
Grundläggande Information om Tillägg
Namn | |
ID | lcelhifbbkanihndkglcfepchfdhblal |
Officiell webbadress | https://chromewebstore.google.com/detail/dotsies/lcelhifbbkanihndkglcfepchfdhblal |
Beskrivning | Converts all pages to use the Dotsies font. |
Filstorlek | 10.61 KB |
Antal Installationer | 34 |
Aktuell Version | 1.0.1 |
Senast Uppdaterad | 2014-12-20 |
Publiceringsdatum | 2014-12-19 |
Betyg | 5.00/5 Totalt 4 Betyg |
Utvecklare | Jaiden Mispy |
Betalningssätt | free |
Stödda Språk | 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" ] } |