Run In Playground
Run any JavaScript code on a page in a code playground of your choice
Run In Playgroundとは何ですか?
Run In Playgroundはhttps://fraserhamilton.devによって開発されたChromeの拡張機能で、その主な機能は「Run any JavaScript code on a page in a code playground of your choice」です。
拡張機能のスクリーンショット
Run In Playground拡張機能のCRXファイルをダウンロード
Run In Playground拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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.
拡張機能の基本情報
名前 | Run In Playground |
ID | gaakbjifoeokcmhbdpgaflahiphfelfd |
公式URL | https://chromewebstore.google.com/detail/run-in-playground/gaakbjifoeokcmhbdpgaflahiphfelfd |
説明 | Run any JavaScript code on a page in a code playground of your choice |
ファイルサイズ | 64.48 KB |
インストール数 | 71 |
現在のバージョン | 1.1 |
最終更新日 | 2020-08-22 |
公開日 | 2020-08-17 |
評価 | 5.00/5 合計 1 レビュー |
開発者 | https://fraserhamilton.dev |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | 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" } } |