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.
扩展基本信息
名称 | 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" } } } |