Tracey - Bug Cop for Trello

Tracey - Bug Cop for Trello

'Tracey - Bug Cop' - Putting Bugs behind Bars since 2016

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Tracey - Bug Cop for Trello",
  "description": "'Tracey - Bug Cop' - Putting Bugs behind Bars since 2016",
  "version": "0.5.4",
  "browser_action": {
    "default_icon": "static/icon128.png",
    "default_popup": "popup/popup.html",
    "default_title": "Tracey - Bug Cop"
  },
  "icons": {
    "128": "static/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "content/content.css"
      ],
      "js": [
        "content/content.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://trello.com/1/token/approve"
      ],
      "js": [
        "content/content-gettoken.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "bg.js"
    ]
  },
  "permissions": [
    "notifications",
    "storage",
    "<all_urls>",
    "system.display"
  ],
  "web_accessible_resources": [
    "static/*",
    "content/content.css",
    "content/popup_.css"
  ]
}