Superchat - AI Powered note taking for free

Superchat - AI Powered note taking for free

Take Notes faster, sync with Notion right on the browser

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Superchat - AI Powered note taking for free",
  "description": "Take Notes faster, sync with Notion right on the browser",
  "version": "1.1.13",
  "manifest_version": 3,
  "commands": {
    "shortcut_command": {
      "suggested_key": {
        "default": "Alt+K",
        "mac": "Command+K",
        "windows": "Alt+K"
      },
      "description": "Text select pop-up",
      "global": false
    }
  },
  "icons": {
    "16": "logo.png",
    "32": "logo.png",
    "48": "logo.png",
    "128": "logo.png"
  },
  "oauth2": {
    "client_id": "464574210780-g1qepc29qvl0lhpdjitqns4vog7tbuu4.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/userinfo.email",
      "https://www.googleapis.com/auth/userinfo.profile"
    ]
  },
  "action": {
    "default_title": "Superchat - GPT-4 Writing Browser Assistant",
    "default_icons": {
      "16": "logo.png",
      "32": "logo.png",
      "48": "logo.png",
      "128": "logo.png"
    },
    "default_popup": "popup.html"
  },
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunRvUIlYqxqysG8X/+hoLvlyrRONOqMP400zgP5ufZFuXK5+934Y87wk2+JEkgW3QA45Tu6dtoSe5SiSY739BCq/99Tf+K0CkeL4+Nnwrtv1o0tNxLHd0flLAm1guc3qlSjrJ80k84zBboLgmZThOHTFc2a3T+z4tsnIYLnrUcET9gIMpGLQsiaTa6VT0c7wa8CODvC7VbQGvZMORzYj6vBuESLGDSi10ZfFPq0yIsunoJlABhyQBjH0chzuQYYvpjk7zd3kQIuI6nRXq+K0pfv/Eei+cGT+VilrjdHsro6Gz5SDkkEnmL7g2iUOyzGMpKZoPLxyP4ygfKM/1r0rpQIDAQAB",
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'; script-src-elem 'self' 'unsafe-inline';"
  },
  "host_permissions": [
    "https://*.openai.com/"
  ],
  "permissions": [
    "storage",
    "tabs",
    "topSites"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "*.css"
      ],
      "matches": [
        "https://*/*"
      ]
    }
  ],
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ]
}