Stash Silencer
This extension toggles comments on Stash pull requests
Co je Stash Silencer?
Stash Silencer je rozšíření Chrome vyvinuté https://stackly.net, a jeho hlavní funkcí je „This extension toggles comments on Stash pull requests“.
Stáhnout soubor CRX rozšíření Stash Silencer
Stáhněte si soubory rozšíření Stash Silencer ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Stash Silencer |
ID | lfpojloainghoengigkfbahnakgcoabl |
Oficiální URL | https://chromewebstore.google.com/detail/stash-silencer/lfpojloainghoengigkfbahnakgcoabl |
Popis | This extension toggles comments on Stash pull requests |
Velikost souboru | 7.05 KB |
Počet instalací | 50 |
Aktuální Verze | 1.0.2 |
Poslední Aktualizace | 2013-06-07 |
Datum Vydání | 2013-06-07 |
Hodnocení | 3.57/5 Celkem 7 Hodnocení |
Vývojář | https://stackly.net |
Typ Platby | free |
Podporované Jazyky | 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" } } } |