Dotsies
Converts all pages to use the Dotsies font.
什么是Dotsies?
Dotsies是由Jaiden Mispy开发的Chrome扩展程序,该扩展的主要功能是“Converts all pages to use the Dotsies font.”。
扩展截图
下载Dotsies扩展crx文件
下载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" ] } |