Dotsies

Converts all pages to use the Dotsies font.

Dotsiesとは何ですか?

DotsiesはJaiden Mispyによって開発されたChromeの拡張機能で、その主な機能は「Converts all pages to use the Dotsies font.」です。

拡張機能のスクリーンショット

screenshot

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/                    

拡張機能の基本情報

名前 Dotsies Dotsies
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"
    ]
}