creadr

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

Co to jest creadr?

creadr to rozszerzenie Chrome opracowane przez lysisius, a jego główną funkcją jest „creadr is a tool designed to help Chinese learners with reading web content”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia creadr

Pobierz pliki rozszerzeń creadr w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        reader mode with pinyin annotation for webpages with Chinese characters                    

Podstawowe informacje o rozszerzeniu

Nazwa creadr creadr
ID baikfbdepnhpkhfbjapemmcppgjaggoi
Oficjalny URL https://chromewebstore.google.com/detail/creadr/baikfbdepnhpkhfbjapemmcppgjaggoi
Opis creadr is a tool designed to help Chinese learners with reading web content
Rozmiar pliku 420 KB
Liczba instalacji 153
Aktualna Wersja 0.2.1
Ostatnia Aktualizacja 2016-10-22
Data Publikacji 2016-10-22
Deweloper lysisius
Typ Płatności free
Strona Rozszerzenia http://creadr.io/
Obsługiwane Języki 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
}