creadr

creadr is a tool designed to help Chinese learners with reading web content

Что такое creadr?

creadr - это расширение Chrome, разработанное lysisius, и его основная функция - "creadr is a tool designed to help Chinese learners with reading web content".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения creadr

Скачайте файлы расширений creadr в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        reader mode with pinyin annotation for webpages with Chinese characters                    

Основная информация о расширении

Название creadr creadr
ID baikfbdepnhpkhfbjapemmcppgjaggoi
Официальный URL https://chromewebstore.google.com/detail/creadr/baikfbdepnhpkhfbjapemmcppgjaggoi
Описание creadr is a tool designed to help Chinese learners with reading web content
Размер файла 420 KB
Количество установок 153
Текущая Версия 0.2.1
Последнее Обновление 2016-10-22
Дата публикации 2016-10-22
Разработчик lysisius
Тип оплаты free
Официальный сайт расширения http://creadr.io/
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "creadr",
    "description": "creadr is a tool designed to help Chinese learners with reading web content",
    "version": "0.2.1",
    "permissions": [
        "activeTab",
        "https:\/\/www.readability.com\/"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "html": [
                "content.html"
            ],
            "css": [
                "content.css"
            ],
            "js": [
                "mini-pinyin.js",
                "lodash.min.js",
                "jquery-3.0.0.js",
                "readability-cn.js",
                "config.js",
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Left click to turn on Chinese reader mode",
        "default_icon": "icon_v4.png"
    },
    "manifest_version": 2
}