Surf Extension
Surf github / gitlab / bitbucket repository in vscode with github.surf
Hvad er Surf Extension?
Surf Extension er en Chrome-udvidelse udviklet af Softmarshmallow, og dens hovedfunktion er "Surf github / gitlab / bitbucket repository in vscode with github.surf".
Udvidelsesskærmbilleder
Download Surf Extension-udvidelses-CRX-fil
Download Surf Extension-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
Openup your code on github.surf via Surf! button.
This can save your time by skipping clone / fork process on your development. you can also inspect your / others code on other branch than your local workspace.
- github GIST support Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | aipkghikndfblkikafmbahbekkhmppia |
| Officiel URL | https://chromewebstore.google.com/detail/surf-extension/aipkghikndfblkikafmbahbekkhmppia |
| Beskrivelse | Surf github / gitlab / bitbucket repository in vscode with github.surf |
| Filstørrelse | 72.3 KB |
| Antal Installationer | 770 |
| Nuværende Version | 0.0.2 |
| Senest Opdateret | 2021-02-21 |
| Udgivelsesdato | 2021-02-14 |
| Bedømmelse | 5.00/5 Samlet 6 Bedømmelser |
| Udvikler | Softmarshmallow |
| [email protected] | |
| Betalingsmetode | free |
| Udvidelseswebsted | https://github.com/bridgedxyz/github.surf |
| Hjælpeside-URL | https://github.com/bridgedxyz/github.surf/issues |
| Understøttede Sprog | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Surf Extension",
"version": "0.0.2",
"permissions": [
"storage"
],
"description": "Surf github \/ gitlab \/ bitbucket repository in vscode with github.surf",
"icons": {
"16": "assets\/surf.png",
"48": "assets\/surf.png",
"128": "assets\/surf.png"
},
"author": "bridged.xyz authors",
"homepage_url": "https:\/\/github.com\/bridgedxyz\/github.surf",
"content_scripts": [
{
"matches": [
"https:\/\/gist.github.com\/*\/*"
],
"js": [
"surf.gist.github.js"
]
},
{
"matches": [
"https:\/\/github.com\/*\/*"
],
"js": [
"surf.github.js"
]
},
{
"matches": [
"https:\/\/gitlab.com\/*\/*"
],
"js": [
"surf.gitlab.js"
]
},
{
"matches": [
"https:\/\/bitbucket.com\/*\/*"
],
"js": [
"surf.bitbucket.js"
]
}
],
"options_ui": {
"page": "options.html"
}
} | |