Run In Playground
Run any JavaScript code on a page in a code playground of your choice
Run In Playground là gì?
Run In Playground là một tiện ích mở rộng Chrome được phát triển bởi https://fraserhamilton.dev, và tính năng chính của nó là "Run any JavaScript code on a page in a code playground of your choice".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Run In Playground
Tải xuống các tệp mở rộng Run In Playground dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Run In Playground |
ID | gaakbjifoeokcmhbdpgaflahiphfelfd |
URL Chính Thức | https://chromewebstore.google.com/detail/run-in-playground/gaakbjifoeokcmhbdpgaflahiphfelfd |
Mô tả | Run any JavaScript code on a page in a code playground of your choice |
Kích Thước Tệp | 64.48 KB |
Số Lần Cài Đặt | 71 |
Phiên Bản Hiện Tại | 1.1 |
Cập Nhật Lần Cuối | 2020-08-22 |
Ngày Phát Hành | 2020-08-17 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | https://fraserhamilton.dev |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |