Surf Extension
Surf github / gitlab / bitbucket repository in vscode with github.surf
Co to jest Surf Extension?
Surf Extension to rozszerzenie Chrome opracowane przez Softmarshmallow, a jego główną funkcją jest „Surf github / gitlab / bitbucket repository in vscode with github.surf”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Surf Extension
Pobierz pliki rozszerzeń Surf Extension w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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 Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | aipkghikndfblkikafmbahbekkhmppia |
| Oficjalny URL | https://chromewebstore.google.com/detail/surf-extension/aipkghikndfblkikafmbahbekkhmppia |
| Opis | Surf github / gitlab / bitbucket repository in vscode with github.surf |
| Rozmiar pliku | 72.3 KB |
| Liczba instalacji | 770 |
| Aktualna Wersja | 0.0.2 |
| Ostatnia Aktualizacja | 2021-02-21 |
| Data Publikacji | 2021-02-14 |
| Ocena | 5.00/5 Łącznie 6 Oceny |
| Deweloper | Softmarshmallow |
| [email protected] | |
| Typ Płatności | free |
| Strona Rozszerzenia | https://github.com/bridgedxyz/github.surf |
| Adres URL Strony Pomocy | https://github.com/bridgedxyz/github.surf/issues |
| Obsługiwane Języki | 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"
}
} | |