Concentration

Concentration

An ChatGPT-powered extension designed to improve your concentration level

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Concentration",
  "version": "2.01",
  "description": "An ChatGPT-powered extension designed to improve your concentration level",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end",
      "js": [
        "content.js"
      ]
    }
  ],
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html",
    "default_title": "A popup will be here!"
  },
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "https://concentration-server.herokuapp.com/",
    "https://web.nightstarry.repl.co/*",
    "https://tunnel.nightstarry.repl.co/*",
    "https://ConBackend.nightstarry.repl.co/*",
    "https://Concentrate.yulinzhang.repl.co/*",
    "https://ConBackend-Enhanced.nightstarry.repl.co/*"
  ],
  "content_security_policy": {
    "extension_page": "script-src: 'self' https://*.firebaseio.com; https://www.googleapis.com; object-src 'self'"
  }
}