.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是由https://dotnetfiddle.net開發的Chrome擴展程式,該擴展的主要功能是“On MSDN, Stack Overflow and Gist sites you can execute and customize any code sample, without leaving the page. On any other…”。
擴展截圖
下載.NET Fiddle擴展crx文件
下載.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 |
官方網址 | 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": [ " |