Code Stats Extension

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

Code Stats Extension क्या है?

Code Stats Extension https://www.bit01.de द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Browser Extension that push code experience XP from (almost) all web platforms to Code Stats."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Code Stats Extension एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम Code Stats Extension Code Stats Extension
ID ljecglgmlhpjalfccaojplcidlmaochd
आधिकारिक URL https://chromewebstore.google.com/detail/code-stats-extension/ljecglgmlhpjalfccaojplcidlmaochd
विवरण Browser Extension that push code experience XP from (almost) all web platforms to Code Stats.
फ़ाइल का आकार 78.15 KB
स्थापना संख्या 393
वर्तमान संस्करण 0.3.4
अंतिम अपडेट 2023-01-06
प्रकाशन तिथि 2020-04-21
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर https://www.bit01.de
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://gitlab.com/code-stats/code-stats-browser/-/blob/master/README.md
सहायता पृष्ठ URL https://www.bit01.de/kontakt/
समर्थित भाषाएँ 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"
}