Codeflower

Visualize repos on github.

Wat is Codeflower?

Codeflower is een Chrome-extensie ontwikkeld door Jake Mensch, en de belangrijkste functie is "Visualize repos on github.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Codeflower

Download Codeflower-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Codeflower Codeflower
ID mnlengnbfpfgcfdgfpkjekoaeophmmeh
Officiële URL https://chromewebstore.google.com/detail/codeflower/mnlengnbfpfgcfdgfpkjekoaeophmmeh
Beschrijving Visualize repos on github.
Bestandsgrootte 246 KB
Aantal Installaties 221
Huidige Versie 1.0.7
Laatst Bijgewerkt 2022-04-26
Publicatiedatum 2020-06-28
Beoordeling 5.00/5 Totaal 2 Beoordelingen
Ontwikkelaar Jake Mensch
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/jmensch1/codeflower
Help Pagina-URL https://github.com/jmensch1/codeflower
Ondersteunde Talen 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
}