.NET Fiddle
On MSDN, Stack Overflow and Gist sites you can execute and customize any code sample, without leaving the page. On any other…
O que é .NET Fiddle?
.NET Fiddle é uma extensão do Chrome desenvolvida por https://dotnetfiddle.net, e sua principal característica é "On MSDN, Stack Overflow and Gist sites you can execute and customize any code sample, without leaving the page. On any other…".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão .NET Fiddle
Baixe arquivos de extensão .NET Fiddle no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | .NET Fiddle |
ID | ohjcieidjalbkdciooknjhkfemfajpjc |
URL Oficial | https://chromewebstore.google.com/detail/net-fiddle/ohjcieidjalbkdciooknjhkfemfajpjc |
Descrição | On MSDN, Stack Overflow and Gist sites you can execute and customize any code sample, without leaving the page. On any other… |
Tamanho do Arquivo | 58.51 KB |
Contagem de Instalações | 3,665 |
Versão Atual | 2.5.0 |
Última Atualização | 2014-06-18 |
Data de Publicação | 2014-06-18 |
Classificação | 4.33/5 Total de 21 Avaliações |
Desenvolvedor | https://dotnetfiddle.net |
Tipo de Pagamento | free |
Site da Extensão | http://dotnetfiddle.net |
URL da Página de Ajuda | https://dotnetfiddle.uservoice.com/forums/228764-dotnetfiddle-ideas |
Idiomas Suportados | 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": [ " |