Codeflower

Visualize repos on github.

Cos'è Codeflower?

Codeflower è un'estensione di Chrome sviluppata da Jake Mensch, e la sua funzione principale è "Visualize repos on github.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Codeflower

Scarica i file di estensione Codeflower in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Codeflower Codeflower
ID mnlengnbfpfgcfdgfpkjekoaeophmmeh
URL Ufficiale https://chromewebstore.google.com/detail/codeflower/mnlengnbfpfgcfdgfpkjekoaeophmmeh
Descrizione Visualize repos on github.
Dimensione del File 246 KB
Conteggio Installazioni 221
Versione Corrente 1.0.7
Ultimo Aggiornamento 2022-04-26
Data di Pubblicazione 2020-06-28
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore Jake Mensch
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/jmensch1/codeflower
URL della Pagina di Aiuto https://github.com/jmensch1/codeflower
Lingue Supportate 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
}