Enhanced Planner for Scoro

Enhanced Planner for Scoro

Makes Scoro's Planner prettier and easier to navigate

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Enhanced Planner for Scoro",
  "version": "7.1",
  "description": "Makes Scoro's Planner prettier and easier to navigate",
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.scoro.com/*"
      ],
      "all_frames": true,
      "js": [
        "content.js"
      ],
      "runAt": "document_start"
    }
  ],
  "action": {
    "default_icon": {
      "16": "/images/Scoro-16.png",
      "32": "/images/Scoro-32.png",
      "48": "/images/Scoro-48.png",
      "128": "/images/Scoro-128.png"
    },
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage",
    "tabs",
    "scripting"
  ],
  "host_permissions": [
    "*://*.scoro.com/*"
  ],
  "icons": {
    "16": "/images/Scoro-16.png",
    "32": "/images/Scoro-32.png",
    "48": "/images/Scoro-48.png",
    "128": "/images/Scoro-128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "sidebar.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}