Teachers Aid - Skool CRM

Organize your Skool messages using our easy-to-use CRM to help with your conversations and leads
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Organize your Skool messages using our easy-to-use CRM to help with your conversations and leads",
  "version": "6.0",
  "manifest_version": 3,
  "name": "Teachers Aid - Skool CRM",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "action": {
    "default_icon": "icon-34.png"
  },
  "icons": {
    "128": "icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.skool.com/*"
      ],
      "js": [
        "contentScript.bundle.js"
      ],
      "css": [
        "content.styles.css"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "tabs",
    "storage",
    "notifications",
    "sidePanel"
  ],
  "host_permissions": [
    "*://*.skool.com/*"
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "https://www.skool.com/*"
      ],
      "resources": [
        "content.styles.css",
        "icon-128.png",
        "icon-34.png",
        "panel.html",
        "teacher-aid-logo-icon.png",
        "left-arrow.png"
      ]
    }
  ],
  "side_panel": {
    "default_path": "panel.html"
  }
}