CodeRun

Code execution made easy - run Python, C, C++, Java, and more, all in one place. Save time and streamline your coding workflow!

CodeRun란 무엇입니까?

CodeRun은(는) Akash에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Code execution made easy - run Python, C, C++, Java, and more, all in one place. Save time and streamline your coding workflow!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

CodeRun 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Introducing a powerful and convenient tool for programmers of all levels, a chrome extension that allows you to execute code in Python, C, C++, Java, Go, and C# with just one click! This extension is designed to make your coding experience faster and more efficient than ever before.

With this extension, you no longer need to switch between multiple programming environments to execute code in different languages. Instead, you can simply open the extension and select the language you want to use. From there, you can enter your code, and with one click, your code will be executed and the results will be displayed.

Whether you're a beginner just starting to learn programming or an experienced developer looking to save time, this extension is the perfect tool for you. With support for multiple languages, you can quickly test code without the hassle of switching between different environments. Plus, the simple and user-friendly interface makes it easy to get started right away.

So why wait? Download the chrome extension now and take your coding skills to the next level!                    

확장 프로그램 기본 정보

이름 CodeRun CodeRun
ID dfgfbnbpfdocoapnohnaoniilmkflcjn
공식 URL https://chromewebstore.google.com/detail/coderun/dfgfbnbpfdocoapnohnaoniilmkflcjn
설명 Code execution made easy - run Python, C, C++, Java, and more, all in one place. Save time and streamline your coding workflow!
파일 크기 87.5 KB
설치 횟수 198
현재 버전 1.0.0
최근 업데이트 2023-02-22
출시 날짜 2023-02-21
평점 4.75/5 총 4 개의 평점
개발자 Akash
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://www.linkedin.com/in/akash-singh8/
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "author": "Akash",
    "name": "CodeRun",
    "description": "Code execution made easy - run Python, C, C++, Java, and more, all in one place. Save time and streamline your coding workflow!",
    "version": "1.0.0",
    "action": {
        "default_icon": {
            "16": "logo.png",
            "32": "logo.png",
            "48": "logo.png",
            "128": "logo.png"
        },
        "default_title": "CodeRun",
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "logo.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab"
    ]
}