YouTube Summary with ChatGPT - Glarity

YouTube Summary with ChatGPT - Glarity

Show summary of ChatGPT in Youtube.com . Glarity - YouTube Video Summary with ChatGPT (AD-Free) This is an open source extension that shows a summary from ChatGPT next to Youtube.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "1.0.6",
  "manifest_version": 2,
  "icons": {
    "16": "logo-16.png",
    "32": "logo-32.png",
    "48": "logo-48.png",
    "128": "logo-128.png"
  },
  "permissions": [
    "storage",
    "https://*.openai.com/",
    "activeTab",
    "tabs"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {},
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "js": [
        "content-script.js"
      ],
      "css": [
        "content-script.css"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{d2cebbfb-ea2a-4312-9404-5d49e3e1482a}"
    }
  }
}