Open GitHub in VS Code
Open GitHub repository in VS Code within browser
Vad är Open GitHub in VS Code?
Open GitHub in VS Code är en Chrome-tillägg utvecklad av Anton Isaiev, och dess huvudfunktion är "Open GitHub repository in VS Code within browser".
Tilläggsskärmbilder
Ladda ner Open GitHub in VS Code-förlängningens CRX-fil
Ladda ner Open GitHub in VS Code-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Just click on "Open in VS Code" button. Based on https://github.com/conwnet/github1s Extension repo: https://github.com/aisaiev/open-github-in-vscode
Grundläggande Information om Tillägg
Namn | Open GitHub in VS Code |
ID | pnhnmmcigmleaooedjnodnioapklfngc |
Officiell webbadress | https://chromewebstore.google.com/detail/open-github-in-vs-code/pnhnmmcigmleaooedjnodnioapklfngc |
Beskrivning | Open GitHub repository in VS Code within browser |
Filstorlek | 30.39 KB |
Antal Installationer | 1,087 |
Aktuell Version | 1.0 |
Senast Uppdaterad | 2021-02-13 |
Publiceringsdatum | 2021-02-12 |
Betyg | 5.00/5 Totalt 2 Betyg |
Utvecklare | Anton Isaiev |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Open GitHub in VS Code", "short_name": "Open GitHub in VS Code", "description": "Open GitHub repository in VS Code within browser", "author": "Anton Isaiev", "version": "1.0", "content_scripts": [ { "matches": [ "https:\/\/github.com\/*\/*" ], "js": [ "content.js" ] } ], "icons": { "128": "icon.png" } } |