.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开发的Chrome扩展程序,该扩展的主要功能是“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

下载.NET Fiddle扩展crx文件

下载.NET Fiddle扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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
}