Stash Silencer

This extension toggles comments on Stash pull requests

Stash Silencer란 무엇입니까?

Stash Silencer은(는) https://stackly.net에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension toggles comments on Stash pull requests"입니다.

Stash Silencer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
        }
    }
}