github-code-viewer
A Chromium extension to view GitHub code faster and easier.
Cos'è github-code-viewer?
github-code-viewer è un'estensione di Chrome sviluppata da xcv58, e la sua funzione principale è "A Chromium extension to view GitHub code faster and easier.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione github-code-viewer
Scarica i file di estensione github-code-viewer 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
View GitHub code in VSCode. Informazioni di Base sull'Estensione
| Nome | |
| ID | ecddapgifccgblebfibdgkagfbdagjfn |
| URL Ufficiale | https://chromewebstore.google.com/detail/github-code-viewer/ecddapgifccgblebfibdgkagfbdagjfn |
| Descrizione | A Chromium extension to view GitHub code faster and easier. |
| Dimensione del File | 19.39 KB |
| Conteggio Installazioni | 609 |
| Versione Corrente | 0.0.1 |
| Ultimo Aggiornamento | 2021-02-10 |
| Data di Pubblicazione | 2021-02-10 |
| Valutazione | 5.00/5 Totale 2 Valutazioni |
| Sviluppatore | xcv58 |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/febaoshan/edge-extensions-github-code-viewer |
| URL della Pagina di Aiuto | https://github.com/febaoshan/edge-extensions-github-code-viewer/issues |
| Lingue Supportate | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "github-code-viewer",
"version": "0.0.1",
"manifest_version": 2,
"description": "A Chromium extension to view GitHub code faster and easier.",
"icons": {
"16": "icons\/logo16x16.png",
"32": "icons\/logo32x32.png",
"48": "icons\/logo48x48.png",
"128": "icons\/logo128x128.png"
},
"page_action": {
"default_popup": "popup\/popup.html"
},
"content_scripts": [
{
"matches": [
"https:\/\/github.com\/*"
],
"js": [
"src\/background.js"
],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
"src\/background.js"
],
"homepage_url": "https:\/\/github.com\/febaoshan\/edge-extensions-github-code-viewer",
"permissions": [
"contextMenus"
],
"background": {
"scripts": [
"src\/background.js"
]
}
} | |