Expand & Collapse
Extension allows the user to Expand & Collapse code sections which is hosted on any GitHub platform
Co to jest Expand & Collapse?
Expand & Collapse to rozszerzenie Chrome opracowane przez achamsanjeevakumar, a jego główną funkcją jest „Extension allows the user to Expand & Collapse code sections which is hosted on any GitHub platform”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Expand & Collapse
Pobierz pliki rozszerzeń Expand & Collapse w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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 Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | odeomhdjffbnnobalkalehmidefcdmkn |
| Oficjalny URL | https://chromewebstore.google.com/detail/expand-collapse/odeomhdjffbnnobalkalehmidefcdmkn |
| Opis | Extension allows the user to Expand & Collapse code sections which is hosted on any GitHub platform |
| Rozmiar pliku | 21.13 KB |
| Liczba instalacji | 76 |
| Aktualna Wersja | 1.0.0 |
| Ostatnia Aktualizacja | 2021-02-17 |
| Data Publikacji | 2021-02-17 |
| Ocena | 5.00/5 Łącznie 1 Oceny |
| Deweloper | achamsanjeevakumar |
| [email protected] | |
| Typ Płatności | free |
| Strona Rozszerzenia | https://github.com/achamsanjeeva/ExpandCollapse |
| Adres URL Strony Pomocy | https://github.com/achamsanjeeva/ExpandCollapse |
| Obsługiwane Języki | 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"
}
} | |