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": "YouTubeGPT",
"version": "2.0",
"description": "A ChatGPT extension for YouTube",
"permissions": [
"activeTab",
"storage",
"https:\/\/chat.openai.com\/*"
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"128": "icon.png"
}
},
"icons": {
"128": "icon.png"
},
"content_scripts": [
{
"matches": [
"*:\/\/www.youtube.com\/*"
],
"js": [
"content.js"
],
"run_at": "document_end"
},
{
"matches": [
"https:\/\/chat.openai.com\/*"
],
"js": [
"chat.js",
"xtra.js"
],
"run_at": "document_idle",
"all_frames": true
}
],
"web_accessible_resources": [
{
"resources": [
"iconGPT.png",
"popup.html"
],
"matches": [
"https:\/\/chat.openai.com\/*"
]
}
]
}