.NET Fiddle

On MSDN, Stack Overflow and Gist sites you can execute and customize any code sample, without leaving the page. On any other…

Cos'è .NET Fiddle?

.NET Fiddle è un'estensione di Chrome sviluppata da https://dotnetfiddle.net, e la sua funzione principale è "On MSDN, Stack Overflow and Gist sites you can execute and customize any code sample, without leaving the page. On any other…".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione .NET Fiddle

Scarica i file di estensione .NET Fiddle in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome .NET Fiddle .NET Fiddle
ID ohjcieidjalbkdciooknjhkfemfajpjc
URL Ufficiale https://chromewebstore.google.com/detail/net-fiddle/ohjcieidjalbkdciooknjhkfemfajpjc
Descrizione On MSDN, Stack Overflow and Gist sites you can execute and customize any code sample, without leaving the page. On any other…
Dimensione del File 58.51 KB
Conteggio Installazioni 3,665
Versione Corrente 2.5.0
Ultimo Aggiornamento 2014-06-18
Data di Pubblicazione 2014-06-18
Valutazione 4.33/5 Totale 21 Valutazioni
Sviluppatore https://dotnetfiddle.net
Tipo di Pagamento free
Sito Web dell'Estensione http://dotnetfiddle.net
URL della Pagina di Aiuto https://dotnetfiddle.uservoice.com/forums/228764-dotnetfiddle-ideas
Lingue Supportate 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": [
                ""
            ],
            "exclude_matches": [
                "http:\/\/msdn.microsoft.com\/*",
                "http:\/\/stackoverflow.com\/*",
                "https:\/\/gist.github.com\/*"
            ],
            "js": [
                "content.js",
                "langDetect.js",
                "common.js",
                "jquery-1.9.1.min.js"
            ]
        }
    ],
    "manifest_version": 2
}