Codeflower

Visualize repos on github.

Τι είναι το Codeflower;

Το Codeflower είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Jake Mensch, και η κύρια λειτουργία του είναι "Visualize repos on github.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Codeflower

Λήψη αρχείων επέκτασης Codeflower σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Codeflower Codeflower
ID mnlengnbfpfgcfdgfpkjekoaeophmmeh
Επίσημο URL https://chromewebstore.google.com/detail/codeflower/mnlengnbfpfgcfdgfpkjekoaeophmmeh
Περιγραφή Visualize repos on github.
Μέγεθος Αρχείου 246 KB
Αριθμός Εγκαταστάσεων 221
Τρέχουσα Έκδοση 1.0.7
Τελευταία Ενημέρωση 2022-04-26
Ημερομηνία Δημοσίευσης 2020-06-28
Αξιολόγηση 5.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής Jake Mensch
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/jmensch1/codeflower
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/jmensch1/codeflower
Υποστηριζόμενες Γλώσσες 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
}