CPBARD - Competitive Programming Assistant

CPBARD - Competitive Programming Assistant

An competitive programming assistant using BARD.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "0.0.3",
  "manifest_version": 3,
  "icons": {
    "16": "logo.png",
    "32": "logo.png",
    "48": "logo.png",
    "128": "logo.png"
  },
  "host_permissions": [
    "https://*.openai.com/",
    "https://*.google.com/"
  ],
  "permissions": [
    "storage",
    "notifications"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.spoj.com/*",
        "https://codeforces.com/*",
        "https://leetcode.com/*",
        "https://projecteuler.net/problem=*",
        "https://www.codechef.com/*",
        "http://poj.org/problem?id=*",
        "https://www.interviewbit.com/problems/*",
        "https://atcoder.jp/*",
        "https://www.hackerrank.com/challenges/*",
        "https://www.hackerearth.com/*",
        "https://open.kattis.com/problems/*",
        "https://dmoj.ca/problem/*",
        "https://acm.timus.ru/problem.aspx*",
        "https://www.eolymp.com/en/problems/*",
        "https://community.topcoder.com/stat?c=problem_statement*",
        "https://lightoj.com/problem/*",
        "https://toph.co/p/*",
        "https://my.newtonschool.co/playground/code/*",
        "https://cses.fi/*",
        "https://codedrills.io/problems/*",
        "https://www.pramp.com/*",
        "https://www.algoexpert.io/questions/*"
      ],
      "js": [
        "content-script.js"
      ],
      "css": [
        "content-script.css"
      ]
    }
  ]
}