Pinyinify
This extension replaces all Chinese characters with pinyin
Cos'è Pinyinify?
Pinyinify è un'estensione di Chrome sviluppata da https://michaelhu.net, e la sua funzione principale è "This extension replaces all Chinese characters with pinyin".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Pinyinify
Scarica i file di estensione Pinyinify in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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/
Informazioni di Base sull'Estensione
Nome | Pinyinify |
ID | ilgkgfbgiempllndljggnmblmcajbcee |
URL Ufficiale | https://chromewebstore.google.com/detail/pinyinify/ilgkgfbgiempllndljggnmblmcajbcee |
Descrizione | This extension replaces all Chinese characters with pinyin |
Dimensione del File | 300 KB |
Conteggio Installazioni | 192 |
Versione Corrente | 1.3 |
Ultimo Aggiornamento | 2016-07-14 |
Data di Pubblicazione | 2016-07-13 |
Valutazione | 3.50/5 Totale 2 Valutazioni |
Sviluppatore | https://michaelhu.net |
Tipo di Pagamento | free |
Lingue Supportate | 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 } |