Gemini-powered AI tool to summarize YouTube videos.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"name": "YouTube Summary AI with Gemini",
"short_name": "AI Summary",
"description": "Gemini-powered AI tool to summarize YouTube videos.",
"homepage_url": "https://github.com/ogobelbel/ChromeSummaryExtention",
"version": "0.6.0.2",
"manifest_version": 3,
"default_locale": "en",
"minimum_chrome_version": "88",
"permissions": [
"tabs",
"storage",
"identity"
],
"icons": {
"16": "assets/icon16.png",
"32": "assets/icon32.png",
"64": "assets/icon64.png",
"128": "assets/icon128.png"
},
"background": {
"scripts": [
"background.js"
]
},
"browser_specific_settings": {
"gecko": {
"id": "[email protected]"
}
},
"content_scripts": [
{
"matches": [
"*://*.youtube.com/*"
],
"js": [
"content.js"
],
"css": [
"style.css"
],
"run_at": "document_start"
}
],
"action": {
"default_title": "Youtube Summarizer",
"default_popup": "./popup.html"
}
}