Super Productivity

Super Productivity

Allows communication with jira and idle time tracking for super productivity inside the browser.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Allows communication with jira and idle time tracking for super productivity inside the browser.",
  "version": "0.5.2",
  "name": "Super Productivity",
  "background": {
    "scripts": [
      "background.bundle.js"
    ]
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": "icon_32x32.png"
  },
  "icons": {
    "128": "icon_128x128.png"
  },
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "content_scripts": [
    {
      "js": [
        "frontendInterface.bundle.js"
      ],
      "matches": [
        "*://super-productivity.com/app/*",
        "*://app.super-productivity.com/*"
      ],
      "all_frames": true
    }
  ],
  "permissions": [
    "tabs",
    "<all_urls>",
    "idle"
  ]
}