Stash Silencer
This extension toggles comments on Stash pull requests
Hvad er Stash Silencer?
Stash Silencer er en Chrome-udvidelse udviklet af https://stackly.net, og dens hovedfunktion er "This extension toggles comments on Stash pull requests".
Download Stash Silencer-udvidelses-CRX-fil
Download Stash Silencer-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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. Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | lfpojloainghoengigkfbahnakgcoabl |
| Officiel URL | https://chromewebstore.google.com/detail/stash-silencer/lfpojloainghoengigkfbahnakgcoabl |
| Beskrivelse | This extension toggles comments on Stash pull requests |
| Filstørrelse | 7.05 KB |
| Antal Installationer | 50 |
| Nuværende Version | 1.0.2 |
| Senest Opdateret | 2013-06-07 |
| Udgivelsesdato | 2013-06-07 |
| Bedømmelse | 3.57/5 Samlet 7 Bedømmelser |
| Udvikler | https://stackly.net |
| Betalingsmetode | free |
| Understøttede Sprog | 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"
}
}
} | |