Codeflower

Visualize repos on github.

Hvad er Codeflower?

Codeflower er en Chrome-udvidelse udviklet af Jake Mensch, og dens hovedfunktion er "Visualize repos on github.".

Udvidelsesskærmbilleder

screenshot

Download Codeflower-udvidelses-CRX-fil

Download Codeflower-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Codeflower Codeflower
ID mnlengnbfpfgcfdgfpkjekoaeophmmeh
Officiel URL https://chromewebstore.google.com/detail/codeflower/mnlengnbfpfgcfdgfpkjekoaeophmmeh
Beskrivelse Visualize repos on github.
Filstørrelse 246 KB
Antal Installationer 221
Nuværende Version 1.0.7
Senest Opdateret 2022-04-26
Udgivelsesdato 2020-06-28
Bedømmelse 5.00/5 Samlet 2 Bedømmelser
Udvikler Jake Mensch
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/jmensch1/codeflower
Hjælpeside-URL https://github.com/jmensch1/codeflower
Understøttede Sprog 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
}