Zenclip

สรุป youtube ฝรั่งเป็นภาษาไทย ภายใน 1 นาทีใน 1 คลิก
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Zenclip",
  "version": "1.0.3",
  "manifest_version": 3,
  "description": "สรุป youtube ฝรั่งเป็นภาษาไทย ภายใน 1 นาทีใน 1 คลิก",
  "background": {
    "service_worker": "background.bundle.js",
    "type": "module"
  },
  "action": {
    "default_icon": {
      "48": "images/48.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*",
        "https://chat.openai.com/*",
        "https://chatgpt.com/*",
        "https://claude.ai/*",
        "https://gemini.google.com/*"
      ],
      "js": [
        "contentscript/index.bundle.js"
      ],
      "css": [
        "contentscript/yt_ai_summary.css"
      ],
      "all_frames": false
    }
  ],
  "permissions": [
    "identity",
    "identity.email"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "icons": {
    "48": "images/48.png"
  }
}