Stash Silencer
This extension toggles comments on Stash pull requests
Co to jest Stash Silencer?
Stash Silencer to rozszerzenie Chrome opracowane przez https://stackly.net, a jego główną funkcją jest „This extension toggles comments on Stash pull requests”.
Pobierz plik CRX rozszerzenia Stash Silencer
Pobierz pliki rozszerzeń Stash Silencer 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
A Google Chrome extension to toggle the visibility of comment threads in Atlassian Stash Pull Requests. Usage: * Visit any pull request in stash that has comments. * Select the Diff tab. * An icon should appear in Chrome's URL bar. * Select a file in the pull request that has review comments. * Click the icon in the URL bar or use Cmd-Shift-C to toggle comments on/off.
Podstawowe informacje o rozszerzeniu
Nazwa | Stash Silencer |
ID | lfpojloainghoengigkfbahnakgcoabl |
Oficjalny URL | https://chromewebstore.google.com/detail/stash-silencer/lfpojloainghoengigkfbahnakgcoabl |
Opis | This extension toggles comments on Stash pull requests |
Rozmiar pliku | 7.05 KB |
Liczba instalacji | 50 |
Aktualna Wersja | 1.0.2 |
Ostatnia Aktualizacja | 2013-06-07 |
Data Publikacji | 2013-06-07 |
Ocena | 3.57/5 Łącznie 7 Oceny |
Deweloper | https://stackly.net |
Typ Płatności | free |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Stash Silencer", "description": "This extension toggles comments on Stash pull requests", "version": "1.0.2", "permissions": [ "tabs", "activeTab" ], "commands": { "toggle-comments": { "suggested_key": { "default": "Ctrl+Shift+C" }, "description": "Toggle pull request comment visibility." } }, "background": { "scripts": [ "background.js" ], "persistent": false }, "page_action": { "default_title": "Toggle Comments", "default_icon": { "19": "icon.png" } } } |