Bandage for Atlassian Applications

Bandage for Atlassian Applications

In-browser fixes to longstanding bugs and functionality gaps

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Bandage for Atlassian Applications",
  "short_name": "Bandage",
  "version": "0.0.34",
  "manifest_version": 2,
  "description": "In-browser fixes to longstanding bugs and functionality gaps",
  "homepage_url": "https://atlasauthority.com/bandage",
  "content_scripts": [
    {
      "matches": [
        "https://*.atlassian.net/*"
      ],
      "js": [
        "injector.js"
      ],
      "all_frames": true
    }
  ],
  "permissions": [
    "tabs",
    "storage",
    "https://*.atlassian.net/*"
  ],
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "web_accessible_resources": [
    "notifyWatchers.js",
    "lastComment.js",
    "openExternalLinkInNewWindow.js",
    "deleteAllAttachments.js",
    "exportTableToCSV.js",
    "groupMentions.js",
    "enableChangeDisplayedTransitions.js",
    "dragAndDropSortableSubTasks.js",
    "manifest.json"
  ],
  "icons": {
    "16": "bandage16x16.png",
    "32": "bandage32x32.png",
    "48": "bandage48x48.png",
    "64": "bandage64x64.png",
    "128": "bandage128x128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": "bandage64x64.png"
  }
}