Copilot: Your AI Assistant Powered By ChatGPT

Copilot: Your AI Assistant Powered By ChatGPT

GPT-4 & GPT-3.5 enhanced extension. A suite of productivity tools offering AI assistance. YouTube Summariser, Personal Tutor & more.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Copilot: Your AI Assistant Powered By ChatGPT",
  "description": "GPT-4 & GPT-3.5 enhanced extension. A suite of productivity tools offering AI assistance. YouTube Summariser, Personal Tutor & more.",
  "version": "2.1.0.3",
  "icons": {
    "128": "icon128.png"
  },
  "action": {
    "default_icon": "icon128.png"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "storage",
    "sidePanel"
  ],
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Alt+C",
        "mac": "Alt+C"
      }
    }
  },
  "side_panel": {
    "default_path": "WE-sidebar.html"
  },
  "host_permissions": [
    "https://www.youtube.com/*",
    "https://*/*",
    "http://*/*"
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "resources": [
        "images/*.svg"
      ]
    },
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "resources": [
        "styles/YTS.css"
      ]
    },
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "resources": [
        "styles/YMR.css"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "images/*.png"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "styles/search.css"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "styles/personal-tutor.css"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "styles/alert.css"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "images/*.svg"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "images/ELI5 Icon.svg"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "WE-sidebar.html"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "personal-tutor.bundle.js"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "console.html"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "lib/wavesurfer.min.js"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "js": [
        "lib/browser-polyfill.min.js",
        "lib/wavesurfer.min.js",
        "YTS-contentScript.bundle.js"
      ]
    },
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "js": [
        "lib/browser-polyfill.min.js",
        "YMR-contentScript.bundle.js"
      ]
    },
    {
      "matches": [
        "https://www.google.com/*"
      ],
      "js": [
        "lib/browser-polyfill.min.js",
        "lib/wavesurfer.min.js",
        "search-contentScript.bundle.js"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "lib/browser-polyfill.min.js",
        "settings-contentScript.bundle.js"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "lib/browser-polyfill.min.js",
        "alert-contentScript.bundle.js"
      ]
    },
    {
      "matches": [
        "https://chromecopilot.ai/*"
      ],
      "js": [
        "lib/browser-polyfill.min.js",
        "token-contentScript.bundle.js"
      ]
    }
  ],
  "background": {
    "service_worker": "service_worker.bundle.js"
  }
}