Stash Silencer
This extension toggles comments on Stash pull requests
Wat is Stash Silencer?
Stash Silencer is een Chrome-extensie ontwikkeld door https://stackly.net, en de belangrijkste functie is "This extension toggles comments on Stash pull requests".
Download het CRX-bestand van de extensie Stash Silencer
Download Stash Silencer-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Stash Silencer |
ID | lfpojloainghoengigkfbahnakgcoabl |
Officiële URL | https://chromewebstore.google.com/detail/stash-silencer/lfpojloainghoengigkfbahnakgcoabl |
Beschrijving | This extension toggles comments on Stash pull requests |
Bestandsgrootte | 7.05 KB |
Aantal Installaties | 50 |
Huidige Versie | 1.0.2 |
Laatst Bijgewerkt | 2013-06-07 |
Publicatiedatum | 2013-06-07 |
Beoordeling | 3.57/5 Totaal 7 Beoordelingen |
Ontwikkelaar | https://stackly.net |
Betalingswijze | free |
Ondersteunde Talen | 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" } } } |