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文件

下載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 Run In Playground
ID gaakbjifoeokcmhbdpgaflahiphfelfd
官方網址 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"
    }
}