Run In Playground

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

Vad är Run In Playground?

Run In Playground är en Chrome-tillägg utvecklad av https://fraserhamilton.dev, och dess huvudfunktion är "Run any JavaScript code on a page in a code playground of your choice".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Run In Playground-förlängningens CRX-fil

Ladda ner Run In Playground-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Run In Playground Run In Playground
ID gaakbjifoeokcmhbdpgaflahiphfelfd
Officiell webbadress https://chromewebstore.google.com/detail/run-in-playground/gaakbjifoeokcmhbdpgaflahiphfelfd
Beskrivning Run any JavaScript code on a page in a code playground of your choice
Filstorlek 64.48 KB
Antal Installationer 71
Aktuell Version 1.1
Senast Uppdaterad 2020-08-22
Publiceringsdatum 2020-08-17
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare https://fraserhamilton.dev
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    }
}