GitHub Reviewer
Make code review easier in GitHub.
Co to jest GitHub Reviewer?
GitHub Reviewer to rozszerzenie Chrome opracowane przez auiWorks, a jego główną funkcją jest „Make code review easier in GitHub.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia GitHub Reviewer
Pobierz pliki rozszerzeń GitHub Reviewer 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
Features:
- Fold/expand files in GitHub Pull Request's "Files Changed"
- Auto fold file which matches patterns defined
Ideas:
- Stars Management
GitHub Repository:
https://github.com/auiWorks/GitHub-Reviewer Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | cgkhabhmjiofemilijihohcgbiachdgm |
| Oficjalny URL | https://chromewebstore.google.com/detail/github-reviewer/cgkhabhmjiofemilijihohcgbiachdgm |
| Opis | Make code review easier in GitHub. |
| Rozmiar pliku | 65.36 KB |
| Liczba instalacji | 27 |
| Aktualna Wersja | 0.0.6 |
| Ostatnia Aktualizacja | 2014-01-29 |
| Data Publikacji | 2014-01-28 |
| Ocena | 3.50/5 Łącznie 2 Oceny |
| Deweloper | auiWorks |
| Typ Płatności | free |
| Strona Rozszerzenia | https://github.com/auiWorks/GitHub-Reviewer |
| Adres URL Strony Pomocy | https://github.com/auiWorks/GitHub-Reviewer/issues |
| Obsługiwane Języki | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "__MSG_appName__",
"description": "__MSG_appDesc__",
"default_locale": "en",
"icons": {
"128": "image\/icon128.png"
},
"version": "0.0.6",
"minimum_chrome_version": "22",
"options_page": "settings.html",
"content_scripts": [
{
"matches": [
"*:\/\/github.com\/*\/pull\/*"
],
"css": [
"style\/content\/pull.css"
],
"js": [
"script\/lib\/jquery.min.js",
"script\/content\/pull.js"
],
"run_at": "document_end"
}
],
"permissions": [
"storage",
"*:\/\/github.com\/*\/pull\/*"
],
"content_security_policy": "script-src 'self' https:\/\/apis.google.com https:\/\/platform.twitter.com; object-src 'self'"
} | |