Stash Silencer

This extension toggles comments on Stash pull requests

Vad är Stash Silencer?

Stash Silencer är en Chrome-tillägg utvecklad av https://stackly.net, och dess huvudfunktion är "This extension toggles comments on Stash pull requests".

Ladda ner Stash Silencer-förlängningens CRX-fil

Ladda ner Stash Silencer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Stash Silencer Stash Silencer
ID lfpojloainghoengigkfbahnakgcoabl
Officiell webbadress https://chromewebstore.google.com/detail/stash-silencer/lfpojloainghoengigkfbahnakgcoabl
Beskrivning This extension toggles comments on Stash pull requests
Filstorlek 7.05 KB
Antal Installationer 50
Aktuell Version 1.0.2
Senast Uppdaterad 2013-06-07
Publiceringsdatum 2013-06-07
Betyg 3.57/5 Totalt 7 Betyg
Utvecklare https://stackly.net
Betalningssätt free
Stödda Språk 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"
        }
    }
}