Inspect and view changes in Open with Code 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",
"name": "Open with Code",
"description": "Open source control web pages in vscode.dev",
"version": "1.0",
"manifest_version": 3,
"background": {
"service_worker": "background.js"
},
"permissions": [
"activeTab",
"scripting"
],
"content_scripts": [
{
"matches": [
"*://github.com/*",
"*://dev.azure.com/*"
],
"js": [
"content.js"
]
}
],
"action": {
"default_icon": {
"16": "/images/OpenWithCode16.png",
"32": "/images/OpenWithCode32.png",
"48": "/images/OpenWithCode48.png",
"128": "/images/OpenWithCode128.png"
},
"default_title": "Open repo in vscode.dev tab"
},
"icons": {
"16": "/images/OpenWithCode16.png",
"32": "/images/OpenWithCode32.png",
"48": "/images/OpenWithCode48.png",
"128": "/images/OpenWithCode128.png"
}
}