Code Stats Extension

Browser Extension that push code experience XP from (almost) all web platforms to Code Stats.

Was ist Code Stats Extension?

Code Stats Extension ist eine Chrome-Erweiterung, die von https://www.bit01.de entwickelt wurde, und ihr Hauptmerkmal ist "Browser Extension that push code experience XP from (almost) all web platforms to Code Stats.".

Erweiterungsscreenshots

screenshot
screenshot

Code Stats Extension-Erweiterungs-CRX-Datei herunterladen

Laden Sie Code Stats Extension-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Sends programmed code experience (XP) from almost all major web editors and IDE to CodeStats.net. In CodeStats you can collect programming experience. The programming language is detected completely automatically. Currently the following editors are supported:

- CodeMirror (for e.g. Jupyter Notebook)
- Monaco Editor
- Ace Editor

If you have any questions or requests, you can write an e-mail.                    

Grundlegende Informationen zur Erweiterung

Name Code Stats Extension Code Stats Extension
ID ljecglgmlhpjalfccaojplcidlmaochd
Offizielle URL https://chromewebstore.google.com/detail/code-stats-extension/ljecglgmlhpjalfccaojplcidlmaochd
Beschreibung Browser Extension that push code experience XP from (almost) all web platforms to Code Stats.
Dateigröße 78.15 KB
Installationsanzahl 393
Aktuelle Version 0.3.4
Letztes Update 2023-01-06
Veröffentlichungsdatum 2020-04-21
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler https://www.bit01.de
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://gitlab.com/code-stats/code-stats-browser/-/blob/master/README.md
Hilfeseite URL https://www.bit01.de/kontakt/
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Code Stats Extension",
    "version": "0.3.4",
    "manifest_version": 2,
    "description": "Browser Extension that push code experience XP from (almost) all web platforms to Code Stats.",
    "icons": {
        "128": "128x128.png",
        "48": ".\/assets\/icons\/48x48.png",
        "32": ".\/assets\/icons\/32x32.png",
        "16": ".\/assets\/icons\/16x16.png"
    },
    "background": {
        "scripts": [
            ".\/js\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": ".\/assets\/icons\/128x128.png",
        "default_popup": ".\/js\/popup\/popup.html",
        "default_title": "Code::Stats"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                ".\/js\/lib\/jquery.min.js",
                ".\/js\/content.js",
                ".\/js\/toggleIcons.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage",
        "activeTab"
    ],
    "short_name": "Code Stats",
    "author": "bitnulleins"
}