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에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Browser Extension that push code experience XP from (almost) all web platforms to Code Stats."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Code Stats Extension 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
}