.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 - это расширение Chrome, разработанное 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 расширения .NET Fiddle

Скачайте файлы расширений .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
}