Gorira

Gorira

A chrome extension to help you screenshot your web pages and create JIRA tickets

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "A chrome extension to help you screenshot your web pages and create JIRA tickets",
  "version": "2.3.1",
  "manifest_version": 3,
  "name": "Gorira",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "icon32.png"
  },
  "icons": {
    "128": "icon128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "icon128.png",
        "icon32.png"
      ],
      "matches": []
    }
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "permissions": [
    "storage",
    "tabs",
    "activeTab"
  ]
}