Pinyinizer
Annotate Hanzi (汉字) on the page with ruby.
Pinyinizer là gì?
Pinyinizer là một tiện ích mở rộng Chrome được phát triển bởi Shinya Fujino, và tính năng chính của nó là "Annotate Hanzi (汉字) on the page with ruby.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Pinyinizer
Tải xuống các tệp mở rộng Pinyinizer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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. 一起加油吧 :)
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Pinyinizer |
ID | dkmlhgmmfochpgplckjlfakepmmhpaep |
URL Chính Thức | https://chromewebstore.google.com/detail/pinyinizer/dkmlhgmmfochpgplckjlfakepmmhpaep |
Mô tả | Annotate Hanzi (汉字) on the page with ruby. |
Kích Thước Tệp | 90.7 KB |
Số Lần Cài Đặt | 987 |
Phiên Bản Hiện Tại | 0.1.0 |
Cập Nhật Lần Cuối | 2017-04-30 |
Ngày Phát Hành | 2017-04-30 |
Đánh Giá | 4.44/5 Tổng số 9 Đánh Giá |
Nhà Phát Triển | Shinya Fujino |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" } } } |