.NET Fiddle
On MSDN, Stack Overflow and Gist sites you can execute and customize any code sample, without leaving the page. On any other…
.NET Fiddleคืออะไร?
.NET Fiddle เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://dotnetfiddle.net และคุณลักษณะหลักของมันคือ "On MSDN, Stack Overflow and Gist sites you can execute and customize any code sample, without leaving the page. On any other…"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย .NET Fiddle
ดาวน์โหลดไฟล์ส่วนขยาย .NET Fiddle ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
On MSDN, Stack Overflow and Gist sites you can execute and customize any code sample, without leaving the page. On any other site you can select the code you would like to modify and "Edit in .NET Fiddle" with 1 click.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | .NET Fiddle |
ID | ohjcieidjalbkdciooknjhkfemfajpjc |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/net-fiddle/ohjcieidjalbkdciooknjhkfemfajpjc |
คำอธิบาย | On MSDN, Stack Overflow and Gist sites you can execute and customize any code sample, without leaving the page. On any other… |
ขนาดไฟล์ | 58.51 KB |
จำนวนการติดตั้ง | 3,665 |
เวอร์ชันปัจจุบัน | 2.5.0 |
อัปเดตครั้งล่าสุด | 2014-06-18 |
วันที่เผยแพร่ | 2014-06-18 |
คะแนน | 4.33/5 รวมทั้งหมด 21 คะแนน |
ผู้พัฒนา | https://dotnetfiddle.net |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | http://dotnetfiddle.net |
URL หน้าช่วยเหลือ | https://dotnetfiddle.uservoice.com/forums/228764-dotnetfiddle-ideas |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": ".NET Fiddle", "version": "2.5.0", "description": "", "background": { "persistent": true, "scripts": [ "background.js" ] }, "permissions": [ "webRequest", "webRequestBlocking", "tabs", "contextMenus", "http:\/\/*\/*", "https:\/\/*\/*" ], "icons": { "16": "images\/icon-16.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "browser_action": { "default_icon": "images\/icon-16.png", "default_title": "Open .NET Fiddle in new tab" }, "content_scripts": [ { "matches": [ "http:\/\/msdn.microsoft.com\/*" ], "js": [ "contentMSDN.js", "common.js", "langDetect.js", "jquery-1.9.1.min.js" ] }, { "matches": [ "http:\/\/stackoverflow.com\/*" ], "js": [ "contentSO.js", "common.js", "langDetect.js", "jquery-1.9.1.min.js" ] }, { "matches": [ "https:\/\/gist.github.com\/*" ], "js": [ "contentGIST.js", "common.js", "langDetect.js", "jquery-1.9.1.min.js" ] }, { "matches": [ " |