Inspect and view changes in Fix Claude's Enter Key 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": "Fix Claude's Enter Key",
"description": "Replaces Enter with Shift+Enter on claude.ai, so that Enter produces a new line",
"version": "1.1",
"browser": {
"default_icon": "icons/icon48.png",
"default_title": "Fix Claude's Enter Key"
},
"icons": {
"48": "icons/icon48.png"
},
"content_scripts": [
{
"matches": [
"*://*.claude.ai/*"
],
"js": [
"content-script.js"
]
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}