.NET Fiddle
On MSDN, Stack Overflow and Gist sites you can execute and customize any code sample, without leaving the page. On any other…
Apa itu .NET Fiddle?
.NET Fiddle adalah ekstensi Chrome yang dikembangkan oleh https://dotnetfiddle.net, dan fitur utamanya adalah "On MSDN, Stack Overflow and Gist sites you can execute and customize any code sample, without leaving the page. On any other…".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi .NET Fiddle
Unduh file ekstensi .NET Fiddle dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | .NET Fiddle |
ID | ohjcieidjalbkdciooknjhkfemfajpjc |
URL Resmi | https://chromewebstore.google.com/detail/net-fiddle/ohjcieidjalbkdciooknjhkfemfajpjc |
Deskripsi | On MSDN, Stack Overflow and Gist sites you can execute and customize any code sample, without leaving the page. On any other… |
Ukuran File | 58.51 KB |
Jumlah Instalasi | 3,665 |
Versi Saat Ini | 2.5.0 |
Terakhir Diperbarui | 2014-06-18 |
Tanggal Publikasi | 2014-06-18 |
Penilaian | 4.33/5 Total 21 Penilaian |
Pengembang | https://dotnetfiddle.net |
Tipe Pembayaran | free |
Situs Ekstensi | http://dotnetfiddle.net |
URL Halaman Bantuan | https://dotnetfiddle.uservoice.com/forums/228764-dotnetfiddle-ideas |
Bahasa yang Didukung | 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": [ " |