Stash Silencer
This extension toggles comments on Stash pull requests
Qu'est-ce que Stash Silencer ?
Stash Silencer est une extension Chrome développée par https://stackly.net, et sa fonction principale est "This extension toggles comments on Stash pull requests".
Télécharger le fichier CRX de l'extension Stash Silencer
Téléchargez les fichiers d'extension Stash Silencer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Stash Silencer |
ID | lfpojloainghoengigkfbahnakgcoabl |
URL Officiel | https://chromewebstore.google.com/detail/stash-silencer/lfpojloainghoengigkfbahnakgcoabl |
Description | This extension toggles comments on Stash pull requests |
Taille du Fichier | 7.05 KB |
Nombre d'Installations | 50 |
Version Actuelle | 1.0.2 |
Dernière Mise à Jour | 2013-06-07 |
Date de Publication | 2013-06-07 |
Évaluation | 3.57/5 Total 7 Évaluations |
Développeur | https://stackly.net |
Type de Paiement | free |
Langues Prises en Charge | 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" } } } |