Mano - Your AI Copilot powered by GPT-4

Mano - Your AI Copilot powered by GPT-4

Mano brings the most powerful AI tools directly into any site. Powered by OpenAI.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Mano - Your AI Copilot powered by GPT-4",
  "version": "0.1.32",
  "description": "Mano brings the most powerful AI tools directly into any site. Powered by OpenAI.",
  "manifest_version": 3,
  "author": "@mihilmy",
  "permissions": [
    "clipboardWrite",
    "storage"
  ],
  "action": {
    "default_icon": "src/icons/store-icon.png",
    "default_title": "Activate Mano to start using ChatGPT"
  },
  "icons": {
    "16": "src/icons/store-icon.png",
    "32": "src/icons/store-icon.png",
    "48": "src/icons/store-icon.png",
    "128": "src/icons/store-icon.png"
  },
  "options_page": "settings.html",
  "content_scripts": [
    {
      "js": [
        "assets/index.tsx-loader.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "http://localhost:5173/*"
      ],
      "css": [
        "assets/index.css"
      ]
    },
    {
      "js": [
        "assets/injector.js-loader.js"
      ],
      "matches": [
        "*://mail.google.com/*"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "service_worker": "service-worker-loader.js",
    "type": "module"
  },
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "src/fonts/avenir-light.woff"
      ],
      "use_dynamic_url": false
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "assets/pin-tool.png",
        "assets/pollyfill-1a6d9aea.js",
        "assets/Setting-6bd6f942.js",
        "assets/index.tsx-3a917141.js"
      ],
      "use_dynamic_url": true
    },
    {
      "matches": [
        "*://mail.google.com/*"
      ],
      "resources": [
        "assets/injector.js-da77dd2c.js"
      ],
      "use_dynamic_url": true
    },
    {
      "resources": [
        "gmail/loader.js",
        "gmail/extension.js"
      ],
      "matches": [
        "*://mail.google.com/*"
      ]
    }
  ],
  "commands": {
    "activate-mano": {
      "suggested_key": {
        "default": "Alt+M",
        "mac": "Alt+M",
        "windows": "Alt+M"
      },
      "description": "Activate Mano to start using ChatGPT"
    }
  }
}