GitHub Code Folding

Enable code folding when viewing files in GitHub.

Что такое GitHub Code Folding?

GitHub Code Folding - это расширение Chrome, разработанное noam3127, и его основная функция - "Enable code folding when viewing files in GitHub.".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения GitHub Code Folding

Скачайте файлы расширений GitHub Code Folding в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Code folding - the ability to selectively hide and display sections of a code - is an invaluable feature in many text editors and IDEs. Now, developers can utilize that same style code-folding while poring over source code on the web in GitHub. Works for any type of indentation, spaces or tabs.


--- CHANGELOG ---
v0.3.3
- handle multi-level nested blocks

v0.3.2
- don't expand previously collapsed inner block when expanding outer block
- styling fix that prevented copying code

v0.3.1
- remove host permission 

v0.3.0
- migrate manifest to v3
- update permissions
- fix styling

v0.2.0
- fix to use CSS selectors from updated github markup 
- run on bbgithub

v0.1.1
- fix missing css file

v0.1.0 
- remove jQuery dependency
- use event page instead of permanent background                    

Основная информация о расширении

Название GitHub Code Folding GitHub Code Folding
ID lefcpjbffalgdcdgidjdnmabfenecjdf
Официальный URL https://chromewebstore.google.com/detail/github-code-folding/lefcpjbffalgdcdgidjdnmabfenecjdf
Описание Enable code folding when viewing files in GitHub.
Размер файла 1.06 MB
Количество установок 3,328
Текущая Версия 0.3.3
Последнее Обновление 2022-07-14
Дата публикации 2019-04-10
Рейтинг 5.00/5 Всего 16 оценок
Разработчик noam3127
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/noam3127/github-code-folding
URL страницы помощи https://github.com/noam3127/github-code-folding/issues
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GitHub Code Folding",
    "version": "0.3.3",
    "description": "Enable code folding when viewing files in GitHub.",
    "homepage_url": "https:\/\/github.com\/noam3127\/github-code-folding",
    "manifest_version": 3,
    "minimum_chrome_version": "88",
    "author": "Noam Lustiger",
    "short_name": "Github Code Folding",
    "permissions": [
        "scripting"
    ],
    "host_permissions": [
        "*:\/\/github.com\/*"
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "icons": {
        "128": "images\/icon-128.png"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "*:\/\/github.com\/*"
            ],
            "css": [
                "style.css"
            ]
        }
    ]
}