Inspect and view changes in ChatGPT Saver 2 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 Saver 2",
"version": "2.0",
"description": "Save your ChatGPT conversation to an HTML or Json File.",
"icons": {
"64": "icons/64.png"
},
"permissions": [
"activeTab",
"tabs",
"downloads",
"scripting"
],
"browser_action": {
"browser_style": true,
"default_popup": "popup/page.html",
"default_icon": {
"16": "icons/16.png",
"32": "icons/32.png"
}
},
"background": {
"scripts": [
"background-script.js"
],
"persistent": false,
"type": "module"
},
"browser_specific_settings": {
"gecko": {
"id": "{7a13b2fd-1b0d-4e46-ad20-5a50a9c9277f}"
}
}
}