Run In Playground
Run any JavaScript code on a page in a code playground of your choice
O que é Run In Playground?
Run In Playground é uma extensão do Chrome desenvolvida por https://fraserhamilton.dev, e sua principal característica é "Run any JavaScript code on a page in a code playground of your choice".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Run In Playground
Baixe arquivos de extensão Run In Playground no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Run In Playground |
ID | gaakbjifoeokcmhbdpgaflahiphfelfd |
URL Oficial | https://chromewebstore.google.com/detail/run-in-playground/gaakbjifoeokcmhbdpgaflahiphfelfd |
Descrição | Run any JavaScript code on a page in a code playground of your choice |
Tamanho do Arquivo | 64.48 KB |
Contagem de Instalações | 71 |
Versão Atual | 1.1 |
Última Atualização | 2020-08-22 |
Data de Publicação | 2020-08-17 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | https://fraserhamilton.dev |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" } } |