Inspect and view changes in Chromium Open IDE 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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "Chromium Open IDE",
"description": "Link remote source.chromium.org code path to your local chromium src.",
"version": "1.2.3",
"permissions": [
"contextMenus",
"tabs"
],
"action": {
"default_icon": "images/COI-Icon.png",
"default_title": "COI"
},
"background": {
"service_worker": "background.js"
},
"host_permissions": [
"http://127.0.0.1:8989/*",
"https://source.chromium.org/*",
"https://chromium-review.googlesource.com/*"
],
"icons": {
"16": "images/COI-Icon.png",
"32": "images/COI-Icon.png",
"48": "images/COI-Icon.png",
"128": "images/COI-Icon.png"
}
}