Run In Playground
Run any JavaScript code on a page in a code playground of your choice
Cos'è Run In Playground?
Run In Playground è un'estensione di Chrome sviluppata da https://fraserhamilton.dev, e la sua funzione principale è "Run any JavaScript code on a page in a code playground of your choice".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Run In Playground
Scarica i file di estensione Run In Playground 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
Often when reading blog posts It can be useful to experiment with the code alongside the author, code playgrounds are great for this but the copy and pasting can quickly become tedious. This extension attempts to address that by adding a "Open In Playground" option to the context menu to open the code in the playground of your choice. You can also click on the extension icon to launch an empty code playground. Currently only CodePen and JSFiddle are supported with more playgrounds coming soon.
Informazioni di Base sull'Estensione
Nome | Run In Playground |
ID | gaakbjifoeokcmhbdpgaflahiphfelfd |
URL Ufficiale | https://chromewebstore.google.com/detail/run-in-playground/gaakbjifoeokcmhbdpgaflahiphfelfd |
Descrizione | Run any JavaScript code on a page in a code playground of your choice |
Dimensione del File | 64.48 KB |
Conteggio Installazioni | 71 |
Versione Corrente | 1.1 |
Ultimo Aggiornamento | 2020-08-22 |
Data di Pubblicazione | 2020-08-17 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | https://fraserhamilton.dev |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Run In Playground", "version": "1.1", "description": "Run any JavaScript code on a page in a code playground of your choice", "manifest_version": 2, "permissions": [ "activeTab", "https:\/\/codepen.io\/pen\/define", "https:\/\/jsfiddle.net\/api\/post\/library\/pure\/", "contextMenus", "storage" ], "background": { "persistent": true, "page": "background.html" }, "browser_action": { "name": "Run In Playground" }, "options_page": "options.html", "icons": { "16": "icon16.png", "32": "icon32.png", "128": "icon128.png" } } |