.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
}