Bitbucket Lines Changed
Lists total number of lines changed in Bitbucket PRs
Co to jest Bitbucket Lines Changed?
Bitbucket Lines Changed to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „Lists total number of lines changed in Bitbucket PRs”.
Pobierz plik CRX rozszerzenia Bitbucket Lines Changed
Pobierz pliki rozszerzeń Bitbucket Lines Changed 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
Adds an overall number of lines added/removed in Bitbucket Pull Requests. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | icfabjllcjkbbmflmkinhnpfadjdjdcj |
| Oficjalny URL | https://chromewebstore.google.com/detail/bitbucket-lines-changed/icfabjllcjkbbmflmkinhnpfadjdjdcj |
| Opis | Lists total number of lines changed in Bitbucket PRs |
| Rozmiar pliku | 9.05 KB |
| Liczba instalacji | 10 |
| Aktualna Wersja | 0.2 |
| Ostatnia Aktualizacja | 2018-02-15 |
| Data Publikacji | 2018-02-15 |
| Deweloper | Unknown |
| Typ Płatności | free |
| Obsługiwane Języki | en-GB |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Bitbucket Lines Changed",
"short_name": "BLC",
"version": "0.2",
"manifest_version": 2,
"description": "Lists total number of lines changed in Bitbucket PRs",
"homepage_url": "http:\/\/www.mpelletier.net",
"icons": {
"32": "images\/icon32.png",
"48": "images\/icon48.png"
},
"permissions": [
"storage"
],
"content_scripts": [
{
"matches": [
"https:\/\/bitbucket.org\/*\/*\/pull-requests\/*"
],
"css": [
"style.css"
],
"js": [
"init.js"
],
"run_at": "document_end"
}
]
} | |