Peanut Gallery

Peanut Gallery

The ultimate tool for seamless ticket creation right from any web page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "0.2.1",
  "name": "Peanut Gallery",
  "short_name": "NPG",
  "author": "Nurdsoft.co",
  "default_locale": "en",
  "description": "The ultimate tool for seamless ticket creation right from any web page",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage",
    "background",
    "activeTab",
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://elaekhldailkkolpgbkbkjmfclmplcge/callback.html"
      ],
      "js": [
        "callback.js"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "util.js",
        "content.js",
        "main.js",
        "html2canvas.min.js",
        "popup.js"
      ],
      "css": [
        "app.css"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "images/jpg-16.png",
    "32": "images/jpg-32.png",
    "48": "images/jpg-48.png",
    "128": "images/jpg-128.png"
  },
  "omnibox": {
    "keyword": "jira"
  },
  "action": {
    "default_title": "__MSG_extActionTitle__",
    "default_popup": "popup.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "required-details.html",
        "images/jpg-48.png",
        "callback.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}