Yaw - Save Money with AI

Yaw - Save Money with AI

Yaw AI finds you the best discounts online!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.0.0",
  "manifest_version": 3,
  "name": "Yaw - Save Money with AI",
  "description": "Yaw AI finds you the best discounts online!",
  "action": {
    "default_icon": "images/logo.png"
  },
  "side_panel": {
    "default_path": "sidebar.html"
  },
  "background": {
    "service_worker": "scripts/background.js"
  },
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "react",
        "react-dom",
        "index.html",
        "index.css",
        "style.css",
        "ytw-react-app.js",
        "scripts/*",
        "chrome/*"
      ]
    }
  ],
  "content_scripts": [
    {
      "js": [
        "scripts/jquery.min.js",
        "scripts/content.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start"
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "oauth2": {
    "client_id": "107999445344-ptecb0hpga8s45fuqr245stp5fvqaib1.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/userinfo.email"
    ]
  },
  "permissions": [
    "sidePanel",
    "activeTab",
    "tabs",
    "storage",
    "commands"
  ],
  "commands": {
    "toggle-chat": {
      "suggested_key": {
        "default": "Ctrl+Shift+Space",
        "mac": "Command+Shift+Space"
      },
      "description": "Toggle the chat"
    }
  }
}