Stash Silencer
This extension toggles comments on Stash pull requests
ما هو Stash Silencer؟
Stash Silencer هو إضافة Chrome تم تطويرها بواسطة https://stackly.net، والميزة الرئيسية لها هي "This extension toggles comments on Stash pull requests".
تحميل ملف CRX للإضافة Stash Silencer
قم بتنزيل ملفات الامتداد Stash Silencer بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
                        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 | 
| عنوان 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"
        }
    }
}  |  |