Robin - Your AI Sidekick

Robin - Your AI Sidekick

Write Mail, Messages & More with AI

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_extName__",
  "version": "0.2",
  "action": {
    "default_popup": "src/browser_action.html",
    "default_icon": "icons/128.png"
  },
  "description": "__MSG_extDescription__",
  "permissions": [
    "storage",
    "tabs"
  ],
  "host_permissions": [
    "https://*.google.com/*"
  ],
  "default_locale": "en",
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/ExtPay.js",
        "js/jquery.min.js",
        "js/script.js"
      ],
      "css": [
        "css/styles.css"
      ],
      "run_at": "document_idle"
    },
    {
      "matches": [
        "https://extensionpay.com/*"
      ],
      "js": [
        "js/ExtPay.js"
      ],
      "run_at": "document_start"
    }
  ],
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "src/search_popup.html",
        "icons/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}