limesandbox
Codesandbox on chrome extension
Hvad er limesandbox?
limesandbox er en Chrome-udvidelse udviklet af hkngoc, og dens hovedfunktion er "Codesandbox on chrome extension".
Udvidelsesskærmbilleder
Download limesandbox-udvidelses-CRX-fil
Download limesandbox-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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 Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | cncmjmiooilibapmmmoppgojdhipkmdi |
| Officiel URL | https://chromewebstore.google.com/detail/limesandbox/cncmjmiooilibapmmmoppgojdhipkmdi |
| Beskrivelse | Codesandbox on chrome extension |
| Filstørrelse | 38.25 MB |
| Antal Installationer | 141 |
| Nuværende Version | 0.2.1 |
| Senest Opdateret | 2022-09-12 |
| Udgivelsesdato | 2021-06-01 |
| Udvikler | hkngoc |
| [email protected] | |
| Betalingsmetode | free |
| URL til Fortrolighedspolitik Side | https://lime-sandbox.web.app |
| Understøttede Sprog | 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';"
} | |