Bitbucket code review
Improvements to Bitbucket and JIRA for easier code reviewing
Co to jest Bitbucket code review?
Bitbucket code review to rozszerzenie Chrome opracowane przez Rene Saarsoo, a jego główną funkcją jest „Improvements to Bitbucket and JIRA for easier code reviewing”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Bitbucket code review
Pobierz pliki rozszerzeń Bitbucket code review 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
Mark-as-read functionality for commits and parts of commits
in Bitbucket and JIRA.
- Mark commits as read/unread in both Bitbucket and JIRA
- Hide reviewed file diffs in bitbucket commit page
- Ignore commits of specified authors (configured in options) Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | odildldpegnccaajmpminocolianigjl |
| Oficjalny URL | https://chromewebstore.google.com/detail/bitbucket-code-review/odildldpegnccaajmpminocolianigjl |
| Opis | Improvements to Bitbucket and JIRA for easier code reviewing |
| Rozmiar pliku | 72.91 KB |
| Liczba instalacji | 80 |
| Aktualna Wersja | 1.0 |
| Ostatnia Aktualizacja | 2016-04-27 |
| Data Publikacji | 2016-04-27 |
| Deweloper | Rene Saarsoo |
| Typ Płatności | free |
| Strona Rozszerzenia | https://github.com/nene/bitbucket-code-review |
| Obsługiwane Języki | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Bitbucket code review",
"short_name": "Bitbucket CR",
"description": "Improvements to Bitbucket and JIRA for easier code reviewing",
"version": "1.0",
"icons": {
"128": "icons\/icon-128.png",
"48": "icons\/icon-48.png",
"16": "icons\/icon-16.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/bitbucket.org\/*\/commits\/*"
],
"js": [
"dist\/bitbucket.js"
],
"css": [
"styles.css"
]
},
{
"matches": [
"https:\/\/*.atlassian.net\/browse\/*"
],
"js": [
"dist\/jira.js"
],
"css": [
"styles.css"
]
}
],
"options_ui": {
"page": "options.html",
"chrome_style": true
},
"permissions": [
"storage"
]
} | |