Pinyinify
This extension replaces all Chinese characters with pinyin
Was ist Pinyinify?
Pinyinify ist eine Chrome-Erweiterung, die von https://michaelhu.net entwickelt wurde, und ihr Hauptmerkmal ist "This extension replaces all Chinese characters with pinyin".
Erweiterungsscreenshots
Pinyinify-Erweiterungs-CRX-Datei herunterladen
Laden Sie Pinyinify-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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/
Grundlegende Informationen zur Erweiterung
Name | Pinyinify |
ID | ilgkgfbgiempllndljggnmblmcajbcee |
Offizielle URL | https://chromewebstore.google.com/detail/pinyinify/ilgkgfbgiempllndljggnmblmcajbcee |
Beschreibung | This extension replaces all Chinese characters with pinyin |
Dateigröße | 300 KB |
Installationsanzahl | 192 |
Aktuelle Version | 1.3 |
Letztes Update | 2016-07-14 |
Veröffentlichungsdatum | 2016-07-13 |
Bewertung | 3.50/5 Insgesamt 2 Bewertungen |
Entwickler | https://michaelhu.net |
Zahlungsart | free |
Unterstützte Sprachen | 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 } |