Run In Playground
Run any JavaScript code on a page in a code playground of your choice
Was ist Run In Playground?
Run In Playground ist eine Chrome-Erweiterung, die von https://fraserhamilton.dev entwickelt wurde, und ihr Hauptmerkmal ist "Run any JavaScript code on a page in a code playground of your choice".
Erweiterungsscreenshots
Run In Playground-Erweiterungs-CRX-Datei herunterladen
Laden Sie Run In Playground-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Run In Playground |
ID | gaakbjifoeokcmhbdpgaflahiphfelfd |
Offizielle URL | https://chromewebstore.google.com/detail/run-in-playground/gaakbjifoeokcmhbdpgaflahiphfelfd |
Beschreibung | Run any JavaScript code on a page in a code playground of your choice |
Dateigröße | 64.48 KB |
Installationsanzahl | 71 |
Aktuelle Version | 1.1 |
Letztes Update | 2020-08-22 |
Veröffentlichungsdatum | 2020-08-17 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | https://fraserhamilton.dev |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" } } |