Inspect and view changes in CodeCompare Pro 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": "CodeCompare Pro",
"version": "1.0",
"description": "Compare code snippets or entire files with syntax highlighting and advanced diff features.",
"icons": {
"48": "icons/icon-48.png",
"96": "icons/icon-96.png",
"128": "icons/icon-128.png"
},
"permissions": [
"storage",
"tabs",
"clipboardRead"
],
"background": {
"scripts": [
"background.js"
]
},
"action": {
"default_popup": "popup/popup.html",
"default_icon": {
"48": "icons/icon-48.png",
"96": "icons/icon-96.png",
"128": "icons/icon-128.png"
}
},
"browser_specific_settings": {
"gecko": {
"id": "codecompare-pro@example.com"
}
},
"default_locale": "en"
}