Codeflower

Visualize repos on github.

Что такое Codeflower?

Codeflower - это расширение Chrome, разработанное Jake Mensch, и его основная функция - "Visualize repos on github.".

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

screenshot

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

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

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

                        The extension adds a "Codeflower" tab to the navigation bar on github.com. When you click on the tab, you'll see the repository, visualized as a d3 force-directed graph.

The inner nodes in the graph correspond to the directories in the repository, and the outer (colored) nodes correspond to the files. The size of the outer nodes increases with the number of lines of code in the file, and the color of the outer nodes indicates what language the file is written in. 

More info on github! 
https://github.com/jmensch1/codeflower                    

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

Название Codeflower Codeflower
ID mnlengnbfpfgcfdgfpkjekoaeophmmeh
Официальный URL https://chromewebstore.google.com/detail/codeflower/mnlengnbfpfgcfdgfpkjekoaeophmmeh
Описание Visualize repos on github.
Размер файла 246 KB
Количество установок 221
Текущая Версия 1.0.7
Последнее Обновление 2022-04-26
Дата публикации 2020-06-28
Рейтинг 5.00/5 Всего 2 оценок
Разработчик Jake Mensch
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/jmensch1/codeflower
URL страницы помощи https://github.com/jmensch1/codeflower
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Codeflower",
    "version": "1.0.7",
    "description": "Visualize repos on github.",
    "icons": {
        "48": "images\/icon128.png",
        "128": "images\/icon128.png"
    },
    "author": "Jake Mensch",
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "js\/jquery.js",
                "js\/main.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "html\/frame.html"
    ],
    "offline_enabled": false
}