Stash Silencer

Stash Silencer

This extension toggles comments on Stash pull requests

Merlin
Additional files are visible only to premium users

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"
    }
  }
}