Run In Playground

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

Hvad er Run In Playground?

Run In Playground er en Chrome-udvidelse udviklet af https://fraserhamilton.dev, og dens hovedfunktion er "Run any JavaScript code on a page in a code playground of your choice".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot

Download Run In Playground-udvidelses-CRX-fil

Download Run In Playground-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

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Run In Playground Run In Playground
ID gaakbjifoeokcmhbdpgaflahiphfelfd
Officiel URL https://chromewebstore.google.com/detail/run-in-playground/gaakbjifoeokcmhbdpgaflahiphfelfd
Beskrivelse Run any JavaScript code on a page in a code playground of your choice
Filstørrelse 64.48 KB
Antal Installationer 71
Nuværende Version 1.1
Senest Opdateret 2020-08-22
Udgivelsesdato 2020-08-17
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler https://fraserhamilton.dev
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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"
    }
}