Run In Playground

Run any JavaScript code on a page in a code playground of your choice

¿Qué es Run In Playground?

Run In Playground es una extensión de Chrome desarrollada por https://fraserhamilton.dev, y su función principal es "Run any JavaScript code on a page in a code playground of your choice".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Run In Playground

Descarga archivos de extensión Run In Playground en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Run In Playground Run In Playground
ID gaakbjifoeokcmhbdpgaflahiphfelfd
URL Oficial https://chromewebstore.google.com/detail/run-in-playground/gaakbjifoeokcmhbdpgaflahiphfelfd
Descripción Run any JavaScript code on a page in a code playground of your choice
Tamaño del Archivo 64.48 KB
Cantidad de Instalaciones 71
Versión Actual 1.1
Última Actualización 2020-08-22
Fecha de Publicación 2020-08-17
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador https://fraserhamilton.dev
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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"
    }
}