Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "YouTube AI Chat & Summary",
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAy3MHso9bTqXThVVUVa+7kj6V7DM+IfW6vXxuvglN5oJcETmg9s0Q7ScBClYD+Xn9b2nk6nBStm6VlY9CwWdfvvrO8VdPVWnMKtF38XGPKPiVTRX820ZRdYjF2lEjzVZCx+7\/sL4ah3ApoWUyfGpkC+MIJ7zLYZ8bg+Vdr+7bkx4yMhPuae2u6+fJLpzTOmZ2oj7NldpAT+YrfLModV2MCUDRuEcxF1MXozURXnKK8ap8gxOknuW6bJsB7aqiWdKgH\/7snNx9iFfsxQq9UugGSPhwCHuHXhqzfyYtTjxULHIQSl6aP0wKA+oqJDxjWmSq3cYzDCMGbhQl\/H8+oNO4mQIDAQAB",
"version": "2.3",
"description": "Chat with YouTube videos using AI. Get instant summaries, ask questions, and find specific moments with timestamps.",
"permissions": [
"storage"
],
"action": {
"default_popup": "public\/index.html",
"default_icon": {
"48": "public\/icon48.png"
}
},
"content_scripts": [
{
"matches": [
"*:\/\/*.youtube.com\/*"
],
"js": [
"public\/content.js"
],
"css": [
"public\/content.css"
]
}
],
"background": {
"service_worker": "public\/background.js"
},
"externally_connectable": {
"matches": [
"http:\/\/localhost:3000\/*",
"https:\/\/www.summd.app\/*",
"https:\/\/summd.app\/*"
]
},
"icons": {
"128": "public\/icon128.png"
}
}