Inspect and view changes in Codecode Review for GitLab 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
{
"name": "Codecode Review for GitLab",
"description": "Adds more features to GitLab code reviews",
"version": "2025.3.11.0",
"manifest_version": 2,
"background": {
"page": "background.html"
},
"content_scripts": [
{
"matches": [
"https://*/*"
],
"js": [
"content_script.js"
],
"css": [
"content_style.css"
]
}
],
"web_accessible_resources": [
"resources/web/img/*"
],
"icons": {
"48": "icons/icon48.png",
"96": "icons/icon96.png"
},
"options_ui": {
"page": "options.html"
},
"browser_action": {
"default_icon": {
"16": "icons/icon16.png",
"32": "icons/icon32.png"
},
"default_popup": "popup.html"
},
"browser_specific_settings": {
"gecko": {
"id": "gitlab_extension@jevgenij.eu"
}
},
"permissions": [
"storage",
"alarms",
"notifications",
"https://jevgenij.eu/*",
"https://www.google-analytics.com/*"
]
}