Numerous.ai

Numerous.ai

Use AI to generate formulas, categorize items, format cells, and perform repetitive tasks in Google Sheets.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Numerous.ai",
  "description": "Use AI to generate formulas, categorize items, format cells, and perform repetitive tasks in Google Sheets.",
  "version": "2.3",
  "icons": {
    "16": "images/icon-16.png",
    "32": "images/icon-32.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "js": [
        "main.js"
      ],
      "matches": [
        "https://docs.google.com/spreadsheets/d/*"
      ]
    },
    {
      "all_frames": true,
      "js": [
        "iframe.js"
      ],
      "matches": [
        "https://*.googleusercontent.com/*"
      ]
    }
  ]
}