Eightify: AI YouTube Summary with ChatGPT

Eightify: AI YouTube Summary with ChatGPT

YouTube summaries with ChatGPT. Save time on long videos — get key ideas instantly. High quality. Instant.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_packageName__",
  "short_name": "Eightify",
  "description": "__MSG_packageSummary__",
  "version": "1.625",
  "default_locale": "en",
  "manifest_version": 3,
  "action": {
    "default_popup": "index.html",
    "default_title": "__MSG_packageSummary__"
  },
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "128": "icon128.png",
    "192": "icon192.png"
  },
  "permissions": [
    "storage"
  ],
  "background": {
    "service_worker": "./static/js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://youtube.com/*",
        "https://www.youtube.com/*",
        "https://youtu.be/*",
        "https://www.youtu.be/*",
        "https://www.youtube-nocookie.com/*",
        "https://youtube-nocookie.com/*",
        "https://www.youtube.com/embed/*",
        "https://youtube.com/embed/*"
      ],
      "js": [
        "./static/js/content.js"
      ]
    }
  ]
}