Stash Silencer

This extension toggles comments on Stash pull requests

Stash Silencerคืออะไร?

Stash Silencer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://stackly.net และคุณลักษณะหลักของมันคือ "This extension toggles comments on Stash pull requests"

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Stash Silencer

ดาวน์โหลดไฟล์ส่วนขยาย Stash Silencer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
        }
    }
}