Grapevine: Web & YouTube Summary with ChatGPT

Grapevine: Web & YouTube Summary with ChatGPT

Display ChatGPT summaries of YouTube videos, Google search results, and all web content.

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": "1.0.1",
  "manifest_version": 3,
  "icons": {
    "16": "logo-16.png",
    "32": "logo-32.png",
    "48": "logo-48.png",
    "128": "logo-128.png"
  },
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAn3esNgbfgAimyyTZMVR5GN3L2edozVZ4FANT2wBYwnYy2yJUne/8UI3WoYoCSx6Noi5hgfFqEwjRIzL/WfUqazpRsXhZiqYgT2+Ida0S97oFoeAuWYJ7NMg2Fv1F/lgIjvmfZksCgphm1aXAuXqGXgmV5Ywq3rf6xvl6Z4cyVk+Y8RdrpQIlZrjEKXU4hfizJdNIZ5yjmRPA5GQF/ml5Gh315GqO7aSa19qgaeUxuvekcTxkAz2BgrJeDRR13F9Z1fJZ6bijP2lna+ugNiE5JHRAvDaJPd16Cj7pAHmeOrnJmSbon9iKQCPFbqbFOoyFN/81By5NgsXqnjAjo/Y8xwIDAQAB",
  "host_permissions": [
    "https://*.openai.com/"
  ],
  "permissions": [
    "storage",
    "activeTab",
    "tabs"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {},
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>",
        "*://*/*"
      ],
      "js": [
        "content-script.js"
      ],
      "css": [
        "content-script.css"
      ]
    }
  ]
}