.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 là gì?

.NET Fiddle là một tiện ích mở rộng Chrome được phát triển bởi https://dotnetfiddle.net, và tính năng chính của nó là "On MSDN, Stack Overflow and Gist sites you can execute and customize any code sample, without leaving the page. On any other…".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng .NET Fiddle

Tải xuống các tệp mở rộng .NET Fiddle dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên .NET Fiddle .NET Fiddle
ID ohjcieidjalbkdciooknjhkfemfajpjc
URL Chính Thức https://chromewebstore.google.com/detail/net-fiddle/ohjcieidjalbkdciooknjhkfemfajpjc
Mô tả On MSDN, Stack Overflow and Gist sites you can execute and customize any code sample, without leaving the page. On any other…
Kích Thước Tệp 58.51 KB
Số Lần Cài Đặt 3,665
Phiên Bản Hiện Tại 2.5.0
Cập Nhật Lần Cuối 2014-06-18
Ngày Phát Hành 2014-06-18
Đánh Giá 4.33/5 Tổng số 21 Đánh Giá
Nhà Phát Triển https://dotnetfiddle.net
Loại Thanh Toán free
Trang Web Mở Rộng http://dotnetfiddle.net
URL Trang Trợ Giúp https://dotnetfiddle.uservoice.com/forums/228764-dotnetfiddle-ideas
Ngôn Ngữ Được Hỗ Trợ 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
}