Codeflower

Visualize repos on github.

Qu'est-ce que Codeflower ?

Codeflower est une extension Chrome développée par Jake Mensch, et sa fonction principale est "Visualize repos on github.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Codeflower

Téléchargez les fichiers d'extension Codeflower au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Codeflower Codeflower
ID mnlengnbfpfgcfdgfpkjekoaeophmmeh
URL Officiel https://chromewebstore.google.com/detail/codeflower/mnlengnbfpfgcfdgfpkjekoaeophmmeh
Description Visualize repos on github.
Taille du Fichier 246 KB
Nombre d'Installations 221
Version Actuelle 1.0.7
Dernière Mise à Jour 2022-04-26
Date de Publication 2020-06-28
Évaluation 5.00/5 Total 2 Évaluations
Développeur Jake Mensch
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/jmensch1/codeflower
URL de la Page d'Aide https://github.com/jmensch1/codeflower
Langues Prises en Charge 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
}