Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{
"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"
}
}