Open in GitHub1s
Add a new navigation option to open GitHub repositories in GitHub1s.
Co to jest Open in GitHub1s?
Open in GitHub1s to rozszerzenie Chrome opracowane przez zacharysmith, a jego główną funkcją jest „Add a new navigation option to open GitHub repositories in GitHub1s.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Open in GitHub1s
Pobierz pliki rozszerzeń Open in GitHub1s 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
GitHub1s is a web-app for viewing GitHub repository files online, using a web-compiled version of VSCode. This extension introduces a new UI button to the GitHub repository file navigation bar, enabling users to easily open the repository inside the GitHub1s website. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | iijaagbkdohcopmmohlgfkcloefoeaoj |
| Oficjalny URL | https://chromewebstore.google.com/detail/open-in-github1s/iijaagbkdohcopmmohlgfkcloefoeaoj |
| Opis | Add a new navigation option to open GitHub repositories in GitHub1s. |
| Rozmiar pliku | 127 KB |
| Liczba instalacji | 1,601 |
| Aktualna Wersja | 1.5 |
| Ostatnia Aktualizacja | 2022-05-10 |
| Data Publikacji | 2021-08-18 |
| Deweloper | zacharysmith |
| [email protected] | |
| Typ Płatności | free |
| Strona Rozszerzenia | https://github.com/Cutwell/github1s-chrome-extension |
| Adres URL Strony Pomocy | https://github.com/Cutwell/github1s-chrome-extension |
| Obsługiwane Języki | en-GB |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Open in GitHub1s",
"version": "1.5",
"description": "Add a new navigation option to open GitHub repositories in GitHub1s.",
"permissions": [
"storage"
],
"action": {
"default_icon": {
"48": "data\/img\/icon48.png",
"128": "data\/img\/icon128.png"
}
},
"options_ui": {
"page": "options.html",
"open_in_tab": false
},
"icons": {
"48": "data\/img\/icon48.png",
"128": "data\/img\/icon128.png"
},
"content_scripts": [
{
"js": [
"data\/js\/content.js"
],
"css": [
"data\/css\/extension.css"
],
"matches": [
"https:\/\/github.com\/*"
]
}
],
"manifest_version": 3
} | |