Stash Silencer

This extension toggles comments on Stash pull requests

What is Stash Silencer?

Stash Silencer is a Chrome extension developed by https://stackly.net, and its main feature is "This extension toggles comments on Stash pull requests".

Download Stash Silencer Extension CRX File

Download Stash Silencer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Stash Silencer Stash Silencer
ID lfpojloainghoengigkfbahnakgcoabl
Official URL https://chromewebstore.google.com/detail/stash-silencer/lfpojloainghoengigkfbahnakgcoabl
Description This extension toggles comments on Stash pull requests
File Size 7.05 KB
Installation Count 50
Current Version 1.0.2
Last Updated 2013-06-07
Publish Date 2013-06-07
Rating 3.57/5 Total 7 Ratings
Developer https://stackly.net
Payment Type free
Supported Languages 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"
        }
    }
}