.NET Fiddle

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

Vad är .NET Fiddle?

.NET Fiddle är en Chrome-tillägg utvecklad av https://dotnetfiddle.net, och dess huvudfunktion är "On MSDN, Stack Overflow and Gist sites you can execute and customize any code sample, without leaving the page. On any other…".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

Ladda ner .NET Fiddle-förlängningens CRX-fil

Ladda ner .NET Fiddle-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn .NET Fiddle .NET Fiddle
ID ohjcieidjalbkdciooknjhkfemfajpjc
Officiell webbadress https://chromewebstore.google.com/detail/net-fiddle/ohjcieidjalbkdciooknjhkfemfajpjc
Beskrivning On MSDN, Stack Overflow and Gist sites you can execute and customize any code sample, without leaving the page. On any other…
Filstorlek 58.51 KB
Antal Installationer 3,665
Aktuell Version 2.5.0
Senast Uppdaterad 2014-06-18
Publiceringsdatum 2014-06-18
Betyg 4.33/5 Totalt 21 Betyg
Utvecklare https://dotnetfiddle.net
Betalningssätt free
Tilläggswebbplats http://dotnetfiddle.net
Hjälpsida URL https://dotnetfiddle.uservoice.com/forums/228764-dotnetfiddle-ideas
Stödda Språk 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
}