Pinyinify

This extension replaces all Chinese characters with pinyin

Wat is Pinyinify?

Pinyinify is een Chrome-extensie ontwikkeld door https://michaelhu.net, en de belangrijkste functie is "This extension replaces all Chinese characters with pinyin".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Pinyinify

Download Pinyinify-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Replaces Chinese hànzì with their pīnyīn equivalents for ABCs like me who aren't able to read Chinese characters.

1.3
Added enable/disable toggle button

Source Code:
https://github.com/TheMichaelHu/pinyinify

This product uses the UNIHAN database:
http://www.unicode.org/reports/tr38/                    

Basisinformatie over de Extensie

Naam Pinyinify Pinyinify
ID ilgkgfbgiempllndljggnmblmcajbcee
Officiële URL https://chromewebstore.google.com/detail/pinyinify/ilgkgfbgiempllndljggnmblmcajbcee
Beschrijving This extension replaces all Chinese characters with pinyin
Bestandsgrootte 300 KB
Aantal Installaties 192
Huidige Versie 1.3
Laatst Bijgewerkt 2016-07-14
Publicatiedatum 2016-07-13
Beoordeling 3.50/5 Totaal 2 Beoordelingen
Ontwikkelaar https://michaelhu.net
Betalingswijze free
Ondersteunde Talen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Pinyinify",
    "description": "This extension replaces all Chinese characters with pinyin",
    "version": "1.3",
    "icons": {
        "16": "img\/tray_icon16.png",
        "48": "img\/tray_icon48.png",
        "128": "img\/tray_icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "unihan.js",
                "contentscript.js"
            ],
            "run_at": "document_idle",
            "all_frames": true
        }
    ],
    "permissions": [
        "tabs",
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "img\/tray_icon128.png"
    },
    "offline_enabled": true
}