Climr

Climr

Climr your AI assistant

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Climr",
  "version": "0.1",
  "description": "Climr your AI assistant",
  "permissions": [
    "scripting",
    "activeTab",
    "storage"
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "action": {
    "default_icon": {
      "19": "images/16px.png",
      "38": "images/32px.png"
    },
    "default_title": "Climr",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "js": [
        "js/iframe.js"
      ],
      "css": [
        "css/side.css"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "view/*",
        "js/iframe.js",
        "iframe-activate.js",
        "popup.html",
        "jquery-3.6.0.min.js",
        "popup.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "icons": {
    "16": "images/16px.png",
    "32": "images/32px.png",
    "48": "images/48px.png",
    "128": "images/128px.png"
  },
  "manifest_version": 3
}