Bitbucket PR Spell Checker

Bitbucket PR Spell Checker

Perform spell checking on Bitbucket pull requests.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Bitbucket PR Spell Checker",
  "short_name": "SpellChecker",
  "version": "0.6.0",
  "description": "Perform spell checking on Bitbucket pull requests.",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "action": {
    "default_icon": "icon48.png",
    "default_popup": "options.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://bitbucket.org/*/*/pull-requests/*"
      ],
      "js": [
        "content_scripts.js"
      ]
    }
  ],
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "permissions": [
    "storage"
  ]
}