Pinyinify
This extension replaces all Chinese characters with pinyin
What is Pinyinify?
Pinyinify is a Chrome extension developed by https://michaelhu.net, and its main feature is "This extension replaces all Chinese characters with pinyin".
Extension Screenshots
Download Pinyinify Extension CRX File
Download Pinyinify extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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/
Extension Basic Information
Name | Pinyinify |
ID | ilgkgfbgiempllndljggnmblmcajbcee |
Official URL | https://chromewebstore.google.com/detail/pinyinify/ilgkgfbgiempllndljggnmblmcajbcee |
Description | This extension replaces all Chinese characters with pinyin |
File Size | 300 KB |
Installation Count | 192 |
Current Version | 1.3 |
Last Updated | 2016-07-14 |
Publish Date | 2016-07-13 |
Rating | 3.50/5 Total 2 Ratings |
Developer | https://michaelhu.net |
Payment Type | free |
Supported Languages | 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 } |