.NET Fiddle
On MSDN, Stack Overflow and Gist sites you can execute and customize any code sample, without leaving the page. On any other…
Qu'est-ce que .NET Fiddle ?
.NET Fiddle est une extension Chrome développée par https://dotnetfiddle.net, et sa fonction principale est "On MSDN, Stack Overflow and Gist sites you can execute and customize any code sample, without leaving the page. On any other…".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension .NET Fiddle
Téléchargez les fichiers d'extension .NET Fiddle au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | .NET Fiddle |
ID | ohjcieidjalbkdciooknjhkfemfajpjc |
URL Officiel | https://chromewebstore.google.com/detail/net-fiddle/ohjcieidjalbkdciooknjhkfemfajpjc |
Description | On MSDN, Stack Overflow and Gist sites you can execute and customize any code sample, without leaving the page. On any other… |
Taille du Fichier | 58.51 KB |
Nombre d'Installations | 3,665 |
Version Actuelle | 2.5.0 |
Dernière Mise à Jour | 2014-06-18 |
Date de Publication | 2014-06-18 |
Évaluation | 4.33/5 Total 21 Évaluations |
Développeur | https://dotnetfiddle.net |
Type de Paiement | free |
Site Web de l'Extension | http://dotnetfiddle.net |
URL de la Page d'Aide | https://dotnetfiddle.uservoice.com/forums/228764-dotnetfiddle-ideas |
Langues Prises en Charge | 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": [ " |