AI Copilot for Sheets - by Arcwise

AI Copilot for Sheets - by Arcwise

Use the AI behind ChatGPT to explain, transform, and ingest data in Sheets with text commands! Just press Cmd+Shift+1 / Ctrl+Shift+1

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "AI Copilot for Sheets - by Arcwise",
  "description": "Use the AI behind ChatGPT to explain, transform, and ingest data in Sheets with text commands! Just press Cmd+Shift+1 / Ctrl+Shift+1",
  "homepage_url": "https://arcwise.ai",
  "version": "2.0.1",
  "manifest_version": 3,
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlsZRIRQ5OHT+AolsjxN4/Z6+9tHVAnDbepkPTFSaYlATbj/VOd9Bco6xntHSsQsCl0DcSdrjUDmOwmUSVselFCEUlsUql9TZbz5zgToCgIGeG463s1cSssr/QwSMaGy6qkdIwZ3snNX2NagRCa9O4apBOpN1gJDEuxrKspWXfWR+McMqOZlFBWo/mqK2WXMVysLBIhgvSRysww/LIxovEuD7fb+/OBfWE9ZWpDFlDrwtpu+2nY3917Yn7VSm3dq4JYuy1X+/fCSSgaef8mzssFOSJxQKizKAQzsYySkuy9AJ0kaydOGHa2CABaUJniI+YdBq7Q1m9QzmJFfX6UcldwIDAQAB",
  "background": {
    "service_worker": "build/background.js",
    "type": "module"
  },
  "action": {
    "default_icon": "icon.png"
  },
  "commands": {
    "_execute_action": {
      "description": "Summon the Arcwise AI command palette.",
      "suggested_key": {
        "default": "Ctrl+Shift+1"
      }
    }
  },
  "content_scripts": [
    {
      "css": [
        "sheets-styles.css"
      ],
      "js": [
        "loader-sheets-content.js"
      ],
      "matches": [
        "https://docs.google.com/spreadsheets/*"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "build/*",
        "icons/*"
      ]
    }
  ],
  "permissions": [
    "background",
    "scripting",
    "storage",
    "clipboardWrite",
    "activeTab"
  ],
  "host_permissions": [
    "https://docs.google.com/spreadsheets/*",
    "https://*.googleusercontent.com/*",
    "https://arcwise.app/*"
  ],
  "optional_permissions": [
    "tabs"
  ],
  "optional_host_permissions": [
    "*://*/*"
  ],
  "icons": {
    "128": "icon.png"
  }
}