.NET Fiddle

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

.NET Fiddle क्या है?

.NET Fiddle https://dotnetfiddle.net द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "On MSDN, Stack Overflow and Gist sites you can execute and customize any code sample, without leaving the page. On any other…"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में .NET Fiddle एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम .NET Fiddle .NET Fiddle
ID ohjcieidjalbkdciooknjhkfemfajpjc
आधिकारिक URL https://chromewebstore.google.com/detail/net-fiddle/ohjcieidjalbkdciooknjhkfemfajpjc
विवरण On MSDN, Stack Overflow and Gist sites you can execute and customize any code sample, without leaving the page. On any other…
फ़ाइल का आकार 58.51 KB
स्थापना संख्या 3,665
वर्तमान संस्करण 2.5.0
अंतिम अपडेट 2014-06-18
प्रकाशन तिथि 2014-06-18
रेटिंग 4.33/5 कुल 21 रेटिंग्स
डेवलपर https://dotnetfiddle.net
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट http://dotnetfiddle.net
सहायता पृष्ठ URL https://dotnetfiddle.uservoice.com/forums/228764-dotnetfiddle-ideas
समर्थित भाषाएँ 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
}