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"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Run In Playground 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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
이메일 [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"
    }
}