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 |
官方網址 | 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" ] } |