Dotsies

Converts all pages to use the Dotsies font.

Dotsies là gì?

Dotsies là một tiện ích mở rộng Chrome được phát triển bởi Jaiden Mispy, và tính năng chính của nó là "Converts all pages to use the Dotsies font.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Dotsies

Tải xuống các tệp mở rộng Dotsies dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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/                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Dotsies Dotsies
ID lcelhifbbkanihndkglcfepchfdhblal
URL Chính Thức https://chromewebstore.google.com/detail/dotsies/lcelhifbbkanihndkglcfepchfdhblal
Mô tả Converts all pages to use the Dotsies font.
Kích Thước Tệp 10.61 KB
Số Lần Cài Đặt 34
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2014-12-20
Ngày Phát Hành 2014-12-19
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển Jaiden Mispy
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}