Run In Playground

Run any JavaScript code on a page in a code playground of your choice

Run In Playgroundคืออะไร?

Run In Playground เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://fraserhamilton.dev และคุณลักษณะหลักของมันคือ "Run any JavaScript code on a page in a code playground of your choice"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Run In Playground

ดาวน์โหลดไฟล์ส่วนขยาย 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
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"
    }
}