bugs.work-Catch Bugs Before They Cost You!

bugs.work-Catch Bugs Before They Cost You!

Effortless Bug Reporting to Save You Time

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "bugs.work-Catch Bugs Before They Cost You!",
  "version": "0.1.1",
  "description": "Effortless Bug Reporting to Save You Time",
  "icons": {
    "16": "images/popup/extension-logo.png",
    "48": "images/popup/extension-logo.png",
    "128": "images/popup/extension-logo.png"
  },
  "action": {
    "default_icon": "images/popup/extension-logo.png",
    "default_popup": "popup.html",
    "default_title": "bugs.work"
  },
  "host_permissions": [
    "https://bugs.work/*"
  ],
  "permissions": [
    "tabs",
    "activeTab",
    "storage",
    "scripting",
    "tabCapture",
    "cookies"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/modal/close-modal-icon.svg"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "images/popup/dropdown-arrow.svg"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "images/modal/project-icon.svg"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "images/modal/check.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "images/modal/redirect.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "images/modal/priorityIcon.svg"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "images/modal/statusIcon.svg"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "images/modal/assigneeIcon.svg"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "images/modal/assigneeNameIcon.svg"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "images/modal/pause-icon.svg"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "images/modal/error.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "images/modal/play-icon.svg"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "images/modal/attach-files.svg"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "images/modal/cross-attached-file.svg"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "libs/markerjs2.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "modal.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "modal.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content.js",
        "libs/markerjs2.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "cropScript.js"
      ]
    },
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "record.js"
      ]
    },
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "recordSteps.js"
      ]
    }
  ]
}