Add JIRA Internal Comment

Add JIRA Internal Comment

Adds a checkbox to insert #internal# text into JIRA's comment.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Add JIRA Internal Comment",
  "version": "3.9.0",
  "description": "Adds a checkbox to insert #internal# text into JIRA's comment.",
  "host_permissions": [
    "http://*/jira/*",
    "https://*/jira/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/jira/*",
        "https://*/jira/*"
      ],
      "js": [
        "jquery.js",
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}