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": " YouTube summary with custom ChatGPT prompts",
"version": "1.0.9",
"description": "How can YouTube summaries, tailored by Human-like ChatGPT prompts. Discover personalized insights now!",
"background": {
"service_worker": "background.js"
},
"permissions": [
"storage"
],
"host_permissions": [
"https:\/\/www.youtube.com\/*",
"https:\/\/chatgpt.com\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/*",
"https:\/\/chatgpt.com\/*"
],
"js": [
"index.js",
"content.js"
],
"all_frames": false,
"type": "module"
}
],
"action": {
"default_icon": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
}
}
}