Surf Extension
Surf github / gitlab / bitbucket repository in vscode with github.surf
Vad är Surf Extension?
Surf Extension är en Chrome-tillägg utvecklad av Softmarshmallow, och dess huvudfunktion är "Surf github / gitlab / bitbucket repository in vscode with github.surf".
Tilläggsskärmbilder
Ladda ner Surf Extension-förlängningens CRX-fil
Ladda ner Surf Extension-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
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äggande Information om Tillägg
| Namn | |
| ID | aipkghikndfblkikafmbahbekkhmppia |
| Officiell webbadress | https://chromewebstore.google.com/detail/surf-extension/aipkghikndfblkikafmbahbekkhmppia |
| Beskrivning | Surf github / gitlab / bitbucket repository in vscode with github.surf |
| Filstorlek | 72.3 KB |
| Antal Installationer | 770 |
| Aktuell Version | 0.0.2 |
| Senast Uppdaterad | 2021-02-21 |
| Publiceringsdatum | 2021-02-14 |
| Betyg | 5.00/5 Totalt 6 Betyg |
| Utvecklare | Softmarshmallow |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/bridgedxyz/github.surf |
| Hjälpsida URL | https://github.com/bridgedxyz/github.surf/issues |
| Stödda Språk | 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"
}
} | |