Expand & Collapse
Extension allows the user to Expand & Collapse code sections which is hosted on any GitHub platform
Was ist Expand & Collapse?
Expand & Collapse ist eine Chrome-Erweiterung, die von achamsanjeevakumar entwickelt wurde, und ihr Hauptmerkmal ist "Extension allows the user to Expand & Collapse code sections which is hosted on any GitHub platform".
Erweiterungsscreenshots
Expand & Collapse-Erweiterungs-CRX-Datei herunterladen
Laden Sie Expand & Collapse-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | Expand & Collapse |
ID | odeomhdjffbnnobalkalehmidefcdmkn |
Offizielle URL | https://chromewebstore.google.com/detail/expand-collapse/odeomhdjffbnnobalkalehmidefcdmkn |
Beschreibung | Extension allows the user to Expand & Collapse code sections which is hosted on any GitHub platform |
Dateigröße | 21.13 KB |
Installationsanzahl | 76 |
Aktuelle Version | 1.0.0 |
Letztes Update | 2021-02-17 |
Veröffentlichungsdatum | 2021-02-17 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | achamsanjeevakumar |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/achamsanjeeva/ExpandCollapse |
Hilfeseite URL | https://github.com/achamsanjeeva/ExpandCollapse |
Unterstützte Sprachen | 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" } } |