Code Stats Extension

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

Code Stats Extension là gì?

Code Stats Extension là một tiện ích mở rộng Chrome được phát triển bởi https://www.bit01.de, và tính năng chính của nó là "Browser Extension that push code experience XP from (almost) all web platforms to Code Stats.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Code Stats Extension

Tải xuống các tệp mở rộng Code Stats Extension dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Code Stats Extension Code Stats Extension
ID ljecglgmlhpjalfccaojplcidlmaochd
URL Chính Thức https://chromewebstore.google.com/detail/code-stats-extension/ljecglgmlhpjalfccaojplcidlmaochd
Mô tả Browser Extension that push code experience XP from (almost) all web platforms to Code Stats.
Kích Thước Tệp 78.15 KB
Số Lần Cài Đặt 393
Phiên Bản Hiện Tại 0.3.4
Cập Nhật Lần Cuối 2023-01-06
Ngày Phát Hành 2020-04-21
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển https://www.bit01.de
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://gitlab.com/code-stats/code-stats-browser/-/blob/master/README.md
URL Trang Trợ Giúp https://www.bit01.de/kontakt/
Ngôn Ngữ Được Hỗ Trợ 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"
}