Pinyinify
This extension replaces all Chinese characters with pinyin
什么是Pinyinify?
Pinyinify是由https://michaelhu.net开发的Chrome扩展程序,该扩展的主要功能是“This extension replaces all Chinese characters with pinyin”。
扩展截图
下载Pinyinify扩展crx文件
下载Pinyinify扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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/
扩展基本信息
名称 | Pinyinify |
ID | ilgkgfbgiempllndljggnmblmcajbcee |
官方URL | https://chromewebstore.google.com/detail/pinyinify/ilgkgfbgiempllndljggnmblmcajbcee |
简介 | This extension replaces all Chinese characters with pinyin |
文件大小 | 300 KB |
安装次数 | 192 |
当前版本 | 1.3 |
更新时间 | 2016-07-14 |
上架时间 | 2016-07-13 |
评分 | 3.50/5 共2次评分 |
开发者 | https://michaelhu.net |
付费类型 | free |
支持的语言 | 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 } |