PCO Dark Mode

PCO Dark Mode

Introduces a "Dark Mode" theme into planning center services.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "PCO Dark Mode",
  "description": "Introduces a \"Dark Mode\" theme into planning center services.",
  "version": "1.5.3",
  "version_name": "1.5.3",
  "icons": {
    "16": "images/icon-128.png",
    "32": "images/icon-32.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://services.planningcenteronline.com/*",
        "https://planningcenteronline.com/*"
      ],
      "js": [
        "content_script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": {
      "16": "images/icon-16.png",
      "32": "images/icon-32.png",
      "48": "images/icon-48.png",
      "128": "images/icon-128.png"
    },
    "default_popup": "popup.html"
  },
  "permissions": [
    "activeTab",
    "scripting",
    "storage"
  ],
  "host_permissions": [
    "https://services.planningcenteronline.com/*",
    "https://planningcenteronline.com/*"
  ]
}