Bitbucket Awesomizer

Bitbucket Awesomizer

Mark Bitbucket pull request comments as resolved and hide the comment thread.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Bitbucket Awesomizer",
  "version": "0.0.9",
  "manifest_version": 2,
  "description": "Mark Bitbucket pull request comments as resolved and hide the comment thread.",
  "homepage_url": "https://github.com/Biomatters/bitbucket-awesomeizer",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "src/bg/background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "*://bitbucket.org/*"
      ],
      "css": [
        "src/inject/inject.css"
      ]
    },
    {
      "matches": [
        "*://bitbucket.org/*"
      ],
      "js": [
        "js/jquery/jquery.min.js",
        "src/inject/inject.js"
      ]
    },
    {
      "matches": [
        "https://bitbucket.org/*/pull-requests/new*"
      ],
      "js": [
        "src/new-pr.js"
      ]
    }
  ],
  "permissions": [
    "*://bitbucket.org/*",
    "tabs",
    "webNavigation"
  ]
}