Stash Silencer
This extension toggles comments on Stash pull requests
Was ist Stash Silencer?
Stash Silencer ist eine Chrome-Erweiterung, die von https://stackly.net entwickelt wurde, und ihr Hauptmerkmal ist "This extension toggles comments on Stash pull requests".
Stash Silencer-Erweiterungs-CRX-Datei herunterladen
Laden Sie Stash Silencer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
                        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.                     Grundlegende Informationen zur Erweiterung
| Name |   |  
| ID | lfpojloainghoengigkfbahnakgcoabl | 
| Offizielle URL | https://chromewebstore.google.com/detail/stash-silencer/lfpojloainghoengigkfbahnakgcoabl | 
| Beschreibung | This extension toggles comments on Stash pull requests | 
| Dateigröße | 7.05 KB | 
| Installationsanzahl | 50 | 
| Aktuelle Version | 1.0.2 | 
| Letztes Update | 2013-06-07 | 
| Veröffentlichungsdatum | 2013-06-07 | 
| Bewertung | 3.57/5 Insgesamt 7 Bewertungen | 
| Entwickler | https://stackly.net | 
| Zahlungsart | free | 
| Unterstützte Sprachen | 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"
        }
    }
}  |  |