CloudBoard - Online Code Editor and Compiler
Cloudboard v6
Τι είναι το CloudBoard - Online Code Editor and Compiler;
Το CloudBoard - Online Code Editor and Compiler είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον cloudboard.live, και η κύρια λειτουργία του είναι "Cloudboard v6".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης CloudBoard - Online Code Editor and Compiler
Λήψη αρχείων επέκτασης 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 |
Επίσημο 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'" } } |