Stash Silencer

This extension toggles comments on Stash pull requests

Stash Silencer क्या है?

Stash Silencer https://stackly.net द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension toggles comments on Stash pull requests"।

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Stash Silencer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम Stash Silencer Stash Silencer
ID lfpojloainghoengigkfbahnakgcoabl
आधिकारिक URL https://chromewebstore.google.com/detail/stash-silencer/lfpojloainghoengigkfbahnakgcoabl
विवरण This extension toggles comments on Stash pull requests
फ़ाइल का आकार 7.05 KB
स्थापना संख्या 50
वर्तमान संस्करण 1.0.2
अंतिम अपडेट 2013-06-07
प्रकाशन तिथि 2013-06-07
रेटिंग 3.57/5 कुल 7 रेटिंग्स
डेवलपर https://stackly.net
भुगतान के प्रकार free
समर्थित भाषाएँ 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"
        }
    }
}