Stash Silencer

This extension toggles comments on Stash pull requests

Stash Silencer là gì?

Stash Silencer là một tiện ích mở rộng Chrome được phát triển bởi https://stackly.net, và tính năng chính của nó là "This extension toggles comments on Stash pull requests".

Tải xuống tệp CRX của tiện ích mở rộng Stash Silencer

Tải xuống các tệp mở rộng Stash Silencer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Stash Silencer Stash Silencer
ID lfpojloainghoengigkfbahnakgcoabl
URL Chính Thức https://chromewebstore.google.com/detail/stash-silencer/lfpojloainghoengigkfbahnakgcoabl
Mô tả This extension toggles comments on Stash pull requests
Kích Thước Tệp 7.05 KB
Số Lần Cài Đặt 50
Phiên Bản Hiện Tại 1.0.2
Cập Nhật Lần Cuối 2013-06-07
Ngày Phát Hành 2013-06-07
Đánh Giá 3.57/5 Tổng số 7 Đánh Giá
Nhà Phát Triển https://stackly.net
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    }
}