GitHub Reviewer
Make code review easier in GitHub.
Co je GitHub Reviewer?
GitHub Reviewer je rozšíření Chrome vyvinuté auiWorks, a jeho hlavní funkcí je „Make code review easier in GitHub.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření GitHub Reviewer
Stáhněte si soubory rozšíření GitHub Reviewer ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | GitHub Reviewer |
ID | cgkhabhmjiofemilijihohcgbiachdgm |
Oficiální URL | https://chromewebstore.google.com/detail/github-reviewer/cgkhabhmjiofemilijihohcgbiachdgm |
Popis | Make code review easier in GitHub. |
Velikost souboru | 65.36 KB |
Počet instalací | 27 |
Aktuální Verze | 0.0.6 |
Poslední Aktualizace | 2014-01-29 |
Datum Vydání | 2014-01-28 |
Hodnocení | 3.50/5 Celkem 2 Hodnocení |
Vývojář | auiWorks |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/auiWorks/GitHub-Reviewer |
URL Stránky Nápovědy | https://github.com/auiWorks/GitHub-Reviewer/issues |
Podporované Jazyky | 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'" } |