Pinyinizer
Annotate Hanzi (汉字) on the page with ruby.
Pinyinizer क्या है?
Pinyinizer Shinya Fujino द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Annotate Hanzi (汉字) on the page with ruby."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Pinyinizer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Pinyinizer offers a functionality to detect 汉字 (Hanzi) on a webpage and annotate them with corresponding 拼音 (Pinyin) as ruby. You can use the extension on any webpage. Just click the icon, and 汉字 on the page will be get annotated! I developed the extension mainly for the purpose of learning Chinese language. I would be happy if Chinese learners enjoy using it. 一起加油吧 :)
एक्सटेंशन की मूल जानकारी
नाम | Pinyinizer |
ID | dkmlhgmmfochpgplckjlfakepmmhpaep |
आधिकारिक URL | https://chromewebstore.google.com/detail/pinyinizer/dkmlhgmmfochpgplckjlfakepmmhpaep |
विवरण | Annotate Hanzi (汉字) on the page with ruby. |
फ़ाइल का आकार | 90.7 KB |
स्थापना संख्या | 987 |
वर्तमान संस्करण | 0.1.0 |
अंतिम अपडेट | 2017-04-30 |
प्रकाशन तिथि | 2017-04-30 |
रेटिंग | 4.44/5 कुल 9 रेटिंग्स |
डेवलपर | Shinya Fujino |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Pinyinizer", "description": "Annotate Hanzi (\u6c49\u5b57) on the page with ruby.", "version": "0.1.0", "permissions": [ "activeTab" ], "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "web_accessible_resources": [ "resources\/hanzi.json" ], "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "src\/script.js", "src\/jquery-3.2.1.min.js" ] } ], "background": { "scripts": [ "src\/background.js" ], "persistent": false }, "browser_action": { "default_title": "Pinyinize this page", "default_icon": { "19": "images\/icon19.png", "38": "images\/icon38.png" } } } |