Collie Chrome Extension

Collie Chrome Extension

Collie.ai is a powerful Chrome extension that enables you to transform any webpage into an automated knowledge hub with just one…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Collie Chrome Extension",
  "description": "",
  "version": "1.0.0",
  "background": {
    "service_worker": "/background.js"
  },
  "permissions": [
    "contextMenus"
  ],
  "action": {
    "default_icon": "icon/icon-32.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icon/icon-16.png",
    "32": "icon/icon-32.png",
    "48": "icon/icon-48.png",
    "128": "icon/icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end",
      "css": [
        "css/site.css"
      ],
      "js": [
        "/content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "img/logo.png",
        "html/sidebar.html",
        "img/dog-running.gif"
      ],
      "matches": [
        "<all_urls>"
      ],
      "use_dynamic_url": true
    }
  ],
  "commands": {
    "toggle_sidebar": {
      "suggested_key": {
        "default": "Ctrl+Shift+K"
      },
      "description": "Toggle sidebar"
    }
  }
}