Github-Editors
Adds useful buttons on repos' homepage like VSCode and Jetbrains' Suite cloning; GitHub1s and Codesandbox viewer.
Cos'è Github-Editors?
Github-Editors è un'estensione di Chrome sviluppata da tclaude94, e la sua funzione principale è "Adds useful buttons on repos' homepage like VSCode and Jetbrains' Suite cloning; GitHub1s and Codesandbox viewer.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Github-Editors
Scarica i file di estensione Github-Editors 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
This extension improves your user experience on GitHub by adding several buttons like:
- VSCode cloning
- Jetbrains' Suite cloning
- Open the repo on GitHub1s
- Open the repo on CodeSandbox
-- Report an issue or submit an improvement
You can report an issue or submit an improvement (like adding support for a new editor) on Github
Repository can be found here : https://github.com/tclaude94/VSCodeGithub Informazioni di Base sull'Estensione
| Nome | |
| ID | djdgcpbdkcipjeaiipndkklnfgfmegna |
| URL Ufficiale | https://chromewebstore.google.com/detail/github-editors/djdgcpbdkcipjeaiipndkklnfgfmegna |
| Descrizione | Adds useful buttons on repos' homepage like VSCode and Jetbrains' Suite cloning; GitHub1s and Codesandbox viewer. |
| Dimensione del File | 341 KB |
| Conteggio Installazioni | 66 |
| Versione Corrente | 0.2.0 |
| Ultimo Aggiornamento | 2021-02-15 |
| Data di Pubblicazione | 2021-02-15 |
| Valutazione | 5.00/5 Totale 2 Valutazioni |
| Sviluppatore | tclaude94 |
| [email protected] | |
| Tipo di Pagamento | free |
| Lingue Supportate | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"browser_action": {
"default_icon": "img\/logo.png",
"default_title": "Github-Editors",
"default_popup": ".\/options\/options.html"
},
"content_scripts": [
{
"js": [
"constants.js",
"main.js"
],
"matches": [
"https:\/\/github.com\/*"
]
}
],
"description": "Adds useful buttons on repos' homepage like VSCode and Jetbrains' Suite cloning; GitHub1s and Codesandbox viewer.",
"manifest_version": 2,
"name": "Github-Editors",
"short_name": "GHE",
"version": "0.2.0",
"web_accessible_resources": [
"img\/*",
"img\/icons\/*"
],
"icons": {
"128": "img\/logo.png",
"16": "img\/logo.png",
"48": "img\/logo.png"
},
"options_ui": {
"page": "\/options\/options.html",
"open_in_tab": false
},
"permissions": [
"storage"
]
} | |