Expand & Collapse
Extension allows the user to Expand & Collapse code sections which is hosted on any GitHub platform
Что такое Expand & Collapse?
Expand & Collapse - это расширение Chrome, разработанное achamsanjeevakumar, и его основная функция - "Extension allows the user to Expand & Collapse code sections which is hosted on any GitHub platform".
Снимки экрана расширения
Скачать файл CRX расширения Expand & Collapse
Скачайте файлы расширений Expand & Collapse в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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 Основная информация о расширении
| Название | |
| ID | odeomhdjffbnnobalkalehmidefcdmkn |
| Официальный URL | https://chromewebstore.google.com/detail/expand-collapse/odeomhdjffbnnobalkalehmidefcdmkn |
| Описание | Extension allows the user to Expand & Collapse code sections which is hosted on any GitHub platform |
| Размер файла | 21.13 KB |
| Количество установок | 76 |
| Текущая Версия | 1.0.0 |
| Последнее Обновление | 2021-02-17 |
| Дата публикации | 2021-02-17 |
| Рейтинг | 5.00/5 Всего 1 оценок |
| Разработчик | achamsanjeevakumar |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/achamsanjeeva/ExpandCollapse |
| URL страницы помощи | https://github.com/achamsanjeeva/ExpandCollapse |
| Поддерживаемые языки | 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"
}
} | |