CloudBoard - Online Code Editor and Compiler

Cloudboard v6

CloudBoard - Online Code Editor and Compiler란 무엇입니까?

CloudBoard - Online Code Editor and Compiler은(는) cloudboard.live에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Cloudboard v6"입니다.

확장 프로그램 스크린샷

screenshot

CloudBoard - Online Code Editor and Compiler 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Welcome to the Code Editor and Compiler for ChatGpt! This powerful chrome extension allows you to easily edit and test your code generated by ChatGpt, all within your browser.

With support of multiple programming languages, you can write, edit, and execute code in your preferred language directly from the extension. Simply copy and paste your code into the editor, and our compiler will automatically detect the language and execute it in a safe and secure sandbox environment.

Whether you're a developer, a student, or just curious about coding, our extension makes it easy to experiment and learn without the need for additional tools or software.                    

확장 프로그램 기본 정보

이름 CloudBoard - Online Code Editor and Compiler CloudBoard - Online Code Editor and Compiler
ID kcghbbipihbbcjclnlmljpniibannhad
공식 URL https://chromewebstore.google.com/detail/cloudboard-online-code-ed/kcghbbipihbbcjclnlmljpniibannhad
설명 Cloudboard v6
파일 크기 165 KB
설치 횟수 108
현재 버전 1.0.6
최근 업데이트 2023-06-05
출시 날짜 2023-04-28
평점 5.00/5 총 2 개의 평점
개발자 cloudboard.live
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://drive.google.com/file/d/1kzLgWqcpFB58b5kj8iCG-nG3sSzei1ni/view
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "CloudBoard - Online Code Editor and Compiler",
    "version": "1.0.6",
    "description": "Cloudboard v6",
    "manifest_version": 3,
    "author": "CloudBoard",
    "permissions": [
        "https:\/\/cloudboard.live\/*",
        "storage"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "externally_connectable": {
        "ids": [
            "kcghbbipihbbcjclnlmljpniibannhad"
        ],
        "matches": [
            "https:\/\/cloudboard.live\/*"
        ]
    },
    "action": {
        "default_popup": "popup.html",
        "default_title": "CloudBoard - Online Code Editor and Compiler"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'",
        "sandbox": "sandbox allow-scripts; script-src 'self' 'https:\/\/apis.google.com\/' 'https:\/\/www.gstatic.com\/' 'ttps:\/\/www.googleapis.com' 'https:\/\/securetoken.googleapis.com' 'https:\/\/ajax.googleapis.com'; object-src 'self'"
    }
}