ChatGPT-powered AI assistant for Jupyter Notebooks
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "ChatGPT - Jupyter - AI Assistant",
"description": "ChatGPT-powered AI assistant for Jupyter Notebooks",
"version": "0.6.0",
"manifest_version": 3,
"icons": {
"16": "logo.png",
"32": "logo.png",
"48": "logo.png",
"128": "logo.png"
},
"host_permissions": [
"https://*.openai.com/"
],
"permissions": [
"storage"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html"
},
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"content_scripts": [
{
"matches": [
"*://*/*.ipynb*",
"*://*/lab*"
],
"js": [
"content-script.js"
],
"css": [
"content-script.css"
]
}
],
"commands": {
"format_code": {
"suggested_key": {
"default": "Ctrl+Shift+1"
},
"description": "Format code"
},
"explain_code": {
"description": "Explain code - (set manually)"
},
"debug_code": {
"description": "Debug code - (set manually)"
},
"complete_code": {
"suggested_key": {
"default": "Ctrl+Shift+4"
},
"description": "Complete code"
},
"review_code": {
"description": "Review code - (set manually)"
},
"ask_question": {
"suggested_key": {
"default": "Ctrl+Shift+6"
},
"description": "Ask coding question"
},
"voice_command": {
"suggested_key": {
"default": "Ctrl+Shift+7"
},
"description": "Voice command"
}
}
}