limesandbox
Codesandbox on chrome extension
Was ist limesandbox?
limesandbox ist eine Chrome-Erweiterung, die von hkngoc entwickelt wurde, und ihr Hauptmerkmal ist "Codesandbox on chrome extension".
Erweiterungsscreenshots
limesandbox-Erweiterungs-CRX-Datei herunterladen
Laden Sie limesandbox-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
The evolution of lime maker - CodeSandbox on chrome extension.
CodeSandbox is an instantly ready, full-featured online IDE for web development on any device with a browser.
Now, we can use it with powerful of extension API.
Source code available on: https://github.com/hkngoc/limesandbox Grundlegende Informationen zur Erweiterung
| Name | |
| ID | cncmjmiooilibapmmmoppgojdhipkmdi |
| Offizielle URL | https://chromewebstore.google.com/detail/limesandbox/cncmjmiooilibapmmmoppgojdhipkmdi |
| Beschreibung | Codesandbox on chrome extension |
| Dateigröße | 38.25 MB |
| Installationsanzahl | 141 |
| Aktuelle Version | 0.2.1 |
| Letztes Update | 2022-09-12 |
| Veröffentlichungsdatum | 2021-06-01 |
| Entwickler | hkngoc |
| [email protected] | |
| Zahlungsart | free |
| URL der Datenschutzrichtlinien-Seite | https://lime-sandbox.web.app |
| Unterstützte Sprachen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "limesandbox",
"version": "0.2.1",
"manifest_version": 2,
"description": "Codesandbox on chrome extension",
"browser_action": {
"default_title": "Limesandbox"
},
"icons": {
"128": "cocktail.png"
},
"background": {
"scripts": [
"background.js"
]
},
"permissions": [
"storage",
"http:\/\/*\/*",
"https:\/\/*\/*",
"*:\/\/*\/*"
],
"optional_permissions": [
"identity",
"cookies"
],
"content_security_policy": "script-src 'self' 'unsafe-eval' 'sha256-3h1diowO97YKunD3WX1wWG060n\/HWibRlFDaaGn79qk=' 'sha256-ju0AYilx7SYhKdgDGf8FZNUrIQU+1W7GWgfeTVnZ4KE=' 'sha256-ju0AYilx7SYhKdgDGf8FZNUrIQU+1W7GWgfeTVnZ4KE=' https:\/\/cdn.jsdelivr.net https:\/\/apis.google.com https:\/\/www.youtube.com; object-src 'self';"
} | |