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",
"name": "Clarify AI: YouTube Summary with Gemini",
"short_name": "AI Summary",
"description": "Gemini-powered AI tool to summarize YouTube videos.",
"homepage_url": "https:\/\/clarify-ai.org",
"version": "1.2.0",
"version_name": "1.2.0",
"manifest_version": 3,
"default_locale": "en",
"minimum_chrome_version": "88",
"permissions": [
"background",
"tabs",
"storage",
"identity"
],
"icons": {
"16": "assets\/icon16.png",
"32": "assets\/icon32.png",
"64": "assets\/icon64.png",
"128": "assets\/icon128.png"
},
"oauth2": {
"client_id": "573056324362-uv8rg1dcc07bca6l227tu92s706mg76i.apps.googleusercontent.com",
"scopes": [
"openid",
"email",
"profile"
]
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.youtube.com\/*"
],
"js": [
"content.js"
],
"css": [
"style.css"
],
"run_at": "document_start"
}
],
"action": {
"default_title": "Youtube Summarizer",
"default_popup": ".\/popup.html"
}
}