Open in GitHub1s
Add a new navigation option to open GitHub repositories in GitHub1s.
Cos'è Open in GitHub1s?
Open in GitHub1s è un'estensione di Chrome sviluppata da zacharysmith, e la sua funzione principale è "Add a new navigation option to open GitHub repositories in GitHub1s.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Open in GitHub1s
Scarica i file di estensione Open in GitHub1s in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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. Informazioni di Base sull'Estensione
| Nome | |
| ID | iijaagbkdohcopmmohlgfkcloefoeaoj |
| URL Ufficiale | https://chromewebstore.google.com/detail/open-in-github1s/iijaagbkdohcopmmohlgfkcloefoeaoj |
| Descrizione | Add a new navigation option to open GitHub repositories in GitHub1s. |
| Dimensione del File | 127 KB |
| Conteggio Installazioni | 1,601 |
| Versione Corrente | 1.5 |
| Ultimo Aggiornamento | 2022-05-10 |
| Data di Pubblicazione | 2021-08-18 |
| Sviluppatore | zacharysmith |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/Cutwell/github1s-chrome-extension |
| URL della Pagina di Aiuto | https://github.com/Cutwell/github1s-chrome-extension |
| Lingue Supportate | 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
} | |