Dotsies
Converts all pages to use the Dotsies font.
Co to jest Dotsies?
Dotsies to rozszerzenie Chrome opracowane przez Jaiden Mispy, a jego główną funkcją jest „Converts all pages to use the Dotsies font.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Dotsies
Pobierz pliki rozszerzeń Dotsies w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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/
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | lcelhifbbkanihndkglcfepchfdhblal |
Oficjalny URL | https://chromewebstore.google.com/detail/dotsies/lcelhifbbkanihndkglcfepchfdhblal |
Opis | Converts all pages to use the Dotsies font. |
Rozmiar pliku | 10.61 KB |
Liczba instalacji | 34 |
Aktualna Wersja | 1.0.1 |
Ostatnia Aktualizacja | 2014-12-20 |
Data Publikacji | 2014-12-19 |
Ocena | 5.00/5 Łącznie 4 Oceny |
Deweloper | Jaiden Mispy |
Typ Płatności | free |
Obsługiwane Języki | 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" ] } |