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文件
下載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. 擴展基本資訊
| 名稱 | |
| ID | lfpojloainghoengigkfbahnakgcoabl |
| 官方網址 | 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"
}
}
} | |