Conch AI

Conch AI

Get your work done 10x faster anywhere with AI. Summarize articles, books, and pdfs.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Conch AI",
  "manifest_version": 3,
  "description": "Get your work done 10x faster anywhere with AI. Summarize articles, books, and pdfs.",
  "version": "1.3.2",
  "action": {
    "default_popup": "index.html",
    "default_title": "Open the popup"
  },
  "icons": {
    "16": "logo.png",
    "48": "logo.png",
    "128": "logo.png"
  },
  "oauth2": {
    "client_id": "472575395416-105ejakeubq5bi8ct9qtq219l8pm7a0d.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/userinfo.email",
      "https://www.googleapis.com/auth/userinfo.profile"
    ]
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "background": {
    "service_worker": "scripts/background.js",
    "type": "module"
  },
  "permissions": [
    "scripting",
    "storage"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "scripts/query-pdf.js",
        "scripts/login-contentscript.js",
        "chrome-popup/*",
        "style/*",
        "content/*",
        "webfonts/*",
        "logo.png",
        "images/*",
        "scripts/script.js",
        "scripts/jquery-3.1.1.min.js",
        "scripts/injected-script.js",
        "Readability.js"
      ],
      "matches": [
        "<all_urls>",
        "*://docs.google.com/*"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "*://docs.google.com/*"
      ],
      "all_frames": false,
      "run_at": "document_start",
      "css": [
        "style/penora-ai-style.css"
      ],
      "js": [
        "scripts/docs-contentscript.js"
      ]
    },
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "Readability.js",
        "chrome-popup/index.js"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "<all_urls>"
    ]
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Q",
        "mac": "MacCtrl+Q"
      },
      "description": "Open the popup"
    }
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'; script-src-elem 'self' 'unsafe-inline' https://cdn.amplitude.com/libs/analytics-browser-1.6.8-min.js.gz;"
  },
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwo03wyZSZ4KVkZr5hUYmPOfuJXggXCTh6OzrLabSnquYqlozR/7VwyOi6BNGE1ibXXRe2g4UyqNOj0mD2b4cfUHXjff/k5QIgR4yVDA7t496AmUFbl6Ana9KMLJc7yz5XurzwZxv21EnoMtcWiK7RtXYeMjOjUQuLD1LTVWY2gtsiJUaGFscBwSLgZSQVdeuBDZkrT1vVbI2sXOecLyYnYaCc7sSde4iiWQV9SN6O4IWVarWr+h21W0NpqxbaEZE0Pk8k0bkxLVAUdOfr5wq9MmfpnFcgo/m5G7HdfrKVhp2f+i2crhgdZiGhQQumQcYQVC6Y0lhmhud5lWOorj2EwIDAQAB"
}