Stash Silencer
This extension toggles comments on Stash pull requests
Cos'è Stash Silencer?
Stash Silencer è un'estensione di Chrome sviluppata da https://stackly.net, e la sua funzione principale è "This extension toggles comments on Stash pull requests".
Scarica il file CRX dell'estensione Stash Silencer
Scarica i file di estensione Stash Silencer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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. Informazioni di Base sull'Estensione
| Nome | |
| ID | lfpojloainghoengigkfbahnakgcoabl |
| URL Ufficiale | https://chromewebstore.google.com/detail/stash-silencer/lfpojloainghoengigkfbahnakgcoabl |
| Descrizione | This extension toggles comments on Stash pull requests |
| Dimensione del File | 7.05 KB |
| Conteggio Installazioni | 50 |
| Versione Corrente | 1.0.2 |
| Ultimo Aggiornamento | 2013-06-07 |
| Data di Pubblicazione | 2013-06-07 |
| Valutazione | 3.57/5 Totale 7 Valutazioni |
| Sviluppatore | https://stackly.net |
| Tipo di Pagamento | free |
| Lingue Supportate | 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"
}
}
} | |