Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "VidSummize - AI YouTube Summary with Chat GPT",
"version": "1.2.9",
"background": {
"service_worker": "background.bundle.js",
"type": "module"
},
"icons": {
"16": ".\/Icon-16.png",
"48": ".\/Icon-48.png",
"128": ".\/Icon-128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/*"
],
"js": [
".\/index.bundle.js"
],
"css": [
".\/style.css"
]
}
],
"permissions": [
"storage"
],
"optional_permissions": [],
"host_permissions": [
"*:\/\/*.youtube.com\/*"
],
"action": {
"default_title": "VidSummize",
"default_popup": ".\/popup.html"
}
}