DevOps Email Notification Remover

DevOps Email Notification Remover

The DevOps Email Notification Remover allows for the copy and paste of email information into Dev Ops cards

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "DevOps Email Notification Remover",
  "description": "The DevOps Email Notification Remover allows for the copy and paste of email information into Dev Ops cards",
  "version": "1.0.1",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.visualstudio.com/*"
      ],
      "run_at": "document_end",
      "js": [
        "library/jquery/jquery-2.2.3.min.js",
        "library/regi/regi.js",
        "library/regi/listenerGlobal.js"
      ]
    }
  ],
  "permissions": [
    "activeTab"
  ]
}