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”。
擴展截圖
下載CloudBoard - Online Code Editor and Compiler擴展crx文件
下載CloudBoard - Online Code Editor and Compiler擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
ID | kcghbbipihbbcjclnlmljpniibannhad |
官方網址 | 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'" } } |