Dotsies

Converts all pages to use the Dotsies font.

What is Dotsies?

Dotsies is a Chrome extension developed by Jaiden Mispy, and its main feature is "Converts all pages to use the Dotsies font.".

Extension Screenshots

screenshot

Download Dotsies Extension CRX File

Download Dotsies extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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/                    

Extension Basic Information

Name Dotsies Dotsies
ID lcelhifbbkanihndkglcfepchfdhblal
Official URL https://chromewebstore.google.com/detail/dotsies/lcelhifbbkanihndkglcfepchfdhblal
Description Converts all pages to use the Dotsies font.
File Size 10.61 KB
Installation Count 34
Current Version 1.0.1
Last Updated 2014-12-20
Publish Date 2014-12-19
Rating 5.00/5 Total 4 Ratings
Developer Jaiden Mispy
Payment Type free
Supported Languages 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"
    ]
}