Issues translator for GitHub
Translate issues, pull requests and comments on GitHub
Co to jest Issues translator for GitHub?
Issues translator for GitHub to rozszerzenie Chrome opracowane przez Outsider (JeongHoon Byun), a jego główną funkcją jest „Translate issues, pull requests and comments on GitHub”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Issues translator for GitHub
Pobierz pliki rozszerzeń Issues translator for GitHub w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
You can translate English issues, pull request and comments on GitHub to Chinese(Simplified), French, German, Japanese, Korean, Portuguese, Spanish or Turkish.
Podstawowe informacje o rozszerzeniu
Nazwa | Issues translator for GitHub |
ID | modnbinffbkbfhoonoakgdmlhdlhnobk |
Oficjalny URL | https://chromewebstore.google.com/detail/issues-translator-for-git/modnbinffbkbfhoonoakgdmlhdlhnobk |
Opis | Translate issues, pull requests and comments on GitHub |
Rozmiar pliku | 125 KB |
Liczba instalacji | 47 |
Aktualna Wersja | 0.5.2 |
Ostatnia Aktualizacja | 2019-03-08 |
Data Publikacji | 2019-03-08 |
Deweloper | Outsider (JeongHoon Byun) |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/outsideris/issue-translator-extention/ |
Adres URL Strony Pomocy | https://github.com/outsideris/issue-translator-extention/issues |
Obsługiwane Języki | 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" ] } |