Issues translator for GitHub
Translate issues, pull requests and comments on GitHub
Issues translator for GitHub là gì?
Issues translator for GitHub là một tiện ích mở rộng Chrome được phát triển bởi Outsider (JeongHoon Byun), và tính năng chính của nó là "Translate issues, pull requests and comments on GitHub".
Ả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 Issues translator for GitHub
Tải xuống các tệp mở rộng Issues translator for GitHub 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
You can translate English issues, pull request and comments on GitHub to Chinese(Simplified), French, German, Japanese, Korean, Portuguese, Spanish or Turkish.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Issues translator for GitHub |
ID | modnbinffbkbfhoonoakgdmlhdlhnobk |
URL Chính Thức | https://chromewebstore.google.com/detail/issues-translator-for-git/modnbinffbkbfhoonoakgdmlhdlhnobk |
Mô tả | Translate issues, pull requests and comments on GitHub |
Kích Thước Tệp | 125 KB |
Số Lần Cài Đặt | 47 |
Phiên Bản Hiện Tại | 0.5.2 |
Cập Nhật Lần Cuối | 2019-03-08 |
Ngày Phát Hành | 2019-03-08 |
Nhà Phát Triển | Outsider (JeongHoon Byun) |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/outsideris/issue-translator-extention/ |
URL Trang Trợ Giúp | https://github.com/outsideris/issue-translator-extention/issues |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Issues translator for GitHub", "version": "0.5.2", "description": "Translate issues, pull requests and comments on GitHub", "homepage_url": "https:\/\/github.com\/outsideris\/issue-translator-extention", "icons": { "128": "translation-128.png" }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*\/*" ], "js": [ "issue-translator.js" ], "css": [ "issue-translator.css" ] } ], "options_ui": { "page": "options.html", "chrome_style": true }, "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "storage", "webNavigation" ] } |