Codeflower

Visualize repos on github.

Co je Codeflower?

Codeflower je rozšíření Chrome vyvinuté Jake Mensch, a jeho hlavní funkcí je „Visualize repos on github.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Codeflower

Stáhněte si soubory rozšíření Codeflower ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Codeflower Codeflower
ID mnlengnbfpfgcfdgfpkjekoaeophmmeh
Oficiální URL https://chromewebstore.google.com/detail/codeflower/mnlengnbfpfgcfdgfpkjekoaeophmmeh
Popis Visualize repos on github.
Velikost souboru 246 KB
Počet instalací 221
Aktuální Verze 1.0.7
Poslední Aktualizace 2022-04-26
Datum Vydání 2020-06-28
Hodnocení 5.00/5 Celkem 2 Hodnocení
Vývojář Jake Mensch
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/jmensch1/codeflower
URL Stránky Nápovědy https://github.com/jmensch1/codeflower
Podporované Jazyky 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
}