.NET Fiddle
On MSDN, Stack Overflow and Gist sites you can execute and customize any code sample, without leaving the page. On any other…
Co je .NET Fiddle?
.NET Fiddle je rozšíření Chrome vyvinuté https://dotnetfiddle.net, a jeho hlavní funkcí je „On MSDN, Stack Overflow and Gist sites you can execute and customize any code sample, without leaving the page. On any other…“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření .NET Fiddle
Stáhněte si soubory rozšíření .NET Fiddle ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | .NET Fiddle |
ID | ohjcieidjalbkdciooknjhkfemfajpjc |
Oficiální URL | https://chromewebstore.google.com/detail/net-fiddle/ohjcieidjalbkdciooknjhkfemfajpjc |
Popis | On MSDN, Stack Overflow and Gist sites you can execute and customize any code sample, without leaving the page. On any other… |
Velikost souboru | 58.51 KB |
Počet instalací | 3,665 |
Aktuální Verze | 2.5.0 |
Poslední Aktualizace | 2014-06-18 |
Datum Vydání | 2014-06-18 |
Hodnocení | 4.33/5 Celkem 21 Hodnocení |
Vývojář | https://dotnetfiddle.net |
Typ Platby | free |
Webové stránky Rozšíření | http://dotnetfiddle.net |
URL Stránky Nápovědy | https://dotnetfiddle.uservoice.com/forums/228764-dotnetfiddle-ideas |
Podporované Jazyky | 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": [ " |