Inspect and view changes in ChatGPT-Opener source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 2,
"name": "ChatGPT-Opener",
"version": "1.0.7",
"description": "ChatGPT-Opener is a simple extension that allows you to open ChatGPT in a new tab and sign in directly from your browser.",
"permissions": [
"tabs",
"activeTab",
"menus",
"storage",
"https://*.openai.com/*"
],
"background": {
"scripts": [
"background.js"
]
},
"browser_action": {
"default_icon": {
"1024": "assets/logo.png"
},
"default_title": "Open ChatGPT"
},
"browser_specific_settings": {
"gecko": {
"id": "chatgpt-opener-firefox@appsolves.dev"
}
}
}