SVOLTE
Browser devtools extension for debugging Svelte applications.
Cos'è SVOLTE?
SVOLTE è un'estensione di Chrome sviluppata da Svolte, e la sua funzione principale è "Browser devtools extension for debugging Svelte applications.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione SVOLTE
Scarica i file di estensione SVOLTE in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Developer tools for Svelte applications and webpages. Features include a component hierarchy tree visualizer, state snapshots, and time-travel debugging. Informazioni di Base sull'Estensione
| Nome | |
| ID | nlocdmlaoaknkffkhpmgahkdkcajcohk |
| URL Ufficiale | https://chromewebstore.google.com/detail/svolte/nlocdmlaoaknkffkhpmgahkdkcajcohk |
| Descrizione | Browser devtools extension for debugging Svelte applications. |
| Dimensione del File | 321 KB |
| Conteggio Installazioni | 66 |
| Versione Corrente | 1.3.0 |
| Ultimo Aggiornamento | 2023-06-06 |
| Data di Pubblicazione | 2023-06-05 |
| Valutazione | 5.00/5 Totale 5 Valutazioni |
| Sviluppatore | Svolte |
| [email protected] | |
| Tipo di Pagamento | free |
| Lingue Supportate | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "SVOLTE",
"version": "1.3.0",
"description": "Browser devtools extension for debugging Svelte applications.",
"content_scripts": [
{
"world": "MAIN",
"matches": [
"https:\/\/*\/*",
"http:\/\/*\/*"
],
"js": [
"content.js"
],
"run_at": "document_start"
},
{
"matches": [
"https:\/\/*\/*",
"http:\/\/*\/*"
],
"js": [
"isolated.js"
],
"run_at": "document_start"
}
],
"background": {
"type": "module",
"service_worker": "background.js",
"run_at": "document_start"
},
"devtools_page": "devtools\/index.html",
"icons": {
"16": "images\/16.png",
"32": "images\/32.png",
"48": "images\/48.png",
"128": "images\/128.png"
}
} | |