GitHub Code-blocks to TypeScript Playground
When browsing GitHub, this extension links to the TypeScript playground from every TypeScript-flavoured codeblock
GitHub Code-blocks to TypeScript Playgroundคืออะไร?
GitHub Code-blocks to TypeScript Playground เป็นส่วนขยายของ Chrome ที่พัฒนาโดย orta.therox และคุณลักษณะหลักของมันคือ "When browsing GitHub, this extension links to the TypeScript playground from every TypeScript-flavoured codeblock"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย GitHub Code-blocks to TypeScript Playground
ดาวน์โหลดไฟล์ส่วนขยาย GitHub Code-blocks to TypeScript Playground ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension adds links to the TypeScript playground throughout GitHub. It's very minimal on work it does, so it won't slow down your browsing.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | GitHub Code-blocks to TypeScript Playground |
ID | ghfbedglkdlaefbpdammobffadckmjaa |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/github-code-blocks-to-typ/ghfbedglkdlaefbpdammobffadckmjaa |
คำอธิบาย | When browsing GitHub, this extension links to the TypeScript playground from every TypeScript-flavoured codeblock |
ขนาดไฟล์ | 8.91 KB |
จำนวนการติดตั้ง | 36 |
เวอร์ชันปัจจุบัน | 0.1 |
อัปเดตครั้งล่าสุด | 2019-06-19 |
วันที่เผยแพร่ | 2019-06-19 |
ผู้พัฒนา | orta.therox |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/orta/ts-playgrounds-github |
URL หน้าช่วยเหลือ | https://github.com/orta/ts-playgrounds-github |
ภาษาที่รองรับ | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "GitHub Code-blocks to TypeScript Playground", "description": "When browsing GitHub, this extension links to the TypeScript playground from every TypeScript-flavoured codeblock", "version": "0.1", "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "js": [ "js\/add-ts-playground-links.js" ] } ], "permissions": [ "https:\/\/github.com\/*" ] } |