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 |
官方網址 | 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 } |