Inspect and view changes in SmartPrompt Assistant 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": 3,
"name": "SmartPrompt Assistant",
"version": "1.0",
"description": "Toolbar for ChatGPT and Gemini, offering a cheat toolbox to boost productivity and user experience.",
"permissions": [
"activeTab",
"scripting"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "toolbar.html",
"default_icon": {
"16": "icons/16x16.png",
"48": "icons/48x48.png",
"128": "icons/128x128.png"
}
},
"content_scripts": [
{
"matches": [
"https://chat.openai.com/*",
"https://gemini.google.com/*",
"https://www.bing.com/*"
],
"js": [
"inject.js"
]
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}