Dotsies
Converts all pages to use the Dotsies font.
Что такое Dotsies?
Dotsies - это расширение Chrome, разработанное Jaiden Mispy, и его основная функция - "Converts all pages to use the Dotsies font.".
Снимки экрана расширения
Скачать файл CRX расширения Dotsies
Скачайте файлы расширений Dotsies в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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/
Основная информация о расширении
Название | |
ID | lcelhifbbkanihndkglcfepchfdhblal |
Официальный URL | https://chromewebstore.google.com/detail/dotsies/lcelhifbbkanihndkglcfepchfdhblal |
Описание | Converts all pages to use the Dotsies font. |
Размер файла | 10.61 KB |
Количество установок | 34 |
Текущая Версия | 1.0.1 |
Последнее Обновление | 2014-12-20 |
Дата публикации | 2014-12-19 |
Рейтинг | 5.00/5 Всего 4 оценок |
Разработчик | Jaiden Mispy |
Тип оплаты | free |
Поддерживаемые языки | 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" ] } |