Julius AI - Analyze Google Sheets with ChatGPT

Julius AI - Analyze Google Sheets with ChatGPT

Analyze Google Sheets using Julius AI, powered by ChatGPT & Anthropic. Create graphs, write reports, and more.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Julius AI - Analyze Google Sheets with ChatGPT",
  "version": "1.0",
  "description": "Analyze Google Sheets using Julius AI, powered by ChatGPT & Anthropic. Create graphs, write reports, and more.",
  "host_permissions": [
    "https://docs.google.com/spreadsheets/d/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://docs.google.com/spreadsheets/d/*"
      ],
      "js": [
        "contentScript.js"
      ],
      "run_at": "document_idle"
    }
  ]
}