Expand & Collapse
Extension allows the user to Expand & Collapse code sections which is hosted on any GitHub platform
Cos'è Expand & Collapse?
Expand & Collapse è un'estensione di Chrome sviluppata da achamsanjeevakumar, e la sua funzione principale è "Extension allows the user to Expand & Collapse code sections which is hosted on any GitHub platform".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Expand & Collapse
Scarica i file di estensione Expand & Collapse 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
Modern editors provide code expand & collapse feature which enables the user to navigate the code easily. Same doesn't exist for web version of github.
Expand & Collapse tool provides same functionality. It supports prominent languages Java, JavaScript, C , C++, PHP,R,Swift Informazioni di Base sull'Estensione
| Nome | |
| ID | odeomhdjffbnnobalkalehmidefcdmkn |
| URL Ufficiale | https://chromewebstore.google.com/detail/expand-collapse/odeomhdjffbnnobalkalehmidefcdmkn |
| Descrizione | Extension allows the user to Expand & Collapse code sections which is hosted on any GitHub platform |
| Dimensione del File | 21.13 KB |
| Conteggio Installazioni | 76 |
| Versione Corrente | 1.0.0 |
| Ultimo Aggiornamento | 2021-02-17 |
| Data di Pubblicazione | 2021-02-17 |
| Valutazione | 5.00/5 Totale 1 Valutazioni |
| Sviluppatore | achamsanjeevakumar |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/achamsanjeeva/ExpandCollapse |
| URL della Pagina di Aiuto | https://github.com/achamsanjeeva/ExpandCollapse |
| Lingue Supportate | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Expand & Collapse",
"description": "Extension allows the user to Expand & Collapse code sections which is hosted on any GitHub platform",
"homepage_url": "https:\/\/github.com\/achamsanjeeva\/ExpandCollapse",
"version": "1.0.0",
"author": "Acham Sanjeeva Kumar",
"manifest_version": 2,
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"permissions": [
"tabs",
"storage",
"*:\/\/*.com\/*"
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "\/images\/16x16.png",
"32": "\/images\/32x32.png",
"48": "\/images\/48x48.png",
"128": "\/images\/128x128.png"
}
},
"icons": {
"16": "\/images\/16x16.png",
"32": "\/images\/32x32.png",
"48": "\/images\/48x48.png",
"128": "\/images\/128x128.png"
}
} | |