Ascentis BSS Extension

Ascentis BSS Extension

A chrome extension plugin specially for Ascentis BSS.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Ascentis BSS Extension",
  "description": "A chrome extension plugin specially for Ascentis BSS.",
  "version": "1.01",
  "manifest_version": 3,
  "icons": {
    "16": "/images/logo.png",
    "48": "/images/logo.png",
    "128": "/images/logo.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage",
    "activeTab",
    "scripting"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "/images/logo.png",
      "32": "/images/logo.png",
      "48": "/images/logo.png",
      "128": "/images/logo.png"
    }
  },
  "content_scripts": [
    {
      "css": [
        "jira_servicedesk_styles.css"
      ],
      "js": [
        "jira_servicedesk_content.js"
      ],
      "matches": [
        "https://ami.atlassian.net/browse/*"
      ]
    }
  ]
}