Run In Playground

Run any JavaScript code on a page in a code playground of your choice

Что такое Run In Playground?

Run In Playground - это расширение Chrome, разработанное https://fraserhamilton.dev, и его основная функция - "Run any JavaScript code on a page in a code playground of your choice".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Run In Playground

Скачайте файлы расширений Run In Playground в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Often when reading blog posts It can be useful to experiment with the code alongside the author, code playgrounds are great for this but the copy and pasting can quickly become tedious. This extension attempts to address that by adding a "Open In Playground" option to the context menu to open the code in the playground of your choice. You can also click on the extension icon to launch an empty code playground. Currently only CodePen and JSFiddle are supported with more playgrounds coming soon.                    

Основная информация о расширении

Название Run In Playground Run In Playground
ID gaakbjifoeokcmhbdpgaflahiphfelfd
Официальный URL https://chromewebstore.google.com/detail/run-in-playground/gaakbjifoeokcmhbdpgaflahiphfelfd
Описание Run any JavaScript code on a page in a code playground of your choice
Размер файла 64.48 KB
Количество установок 71
Текущая Версия 1.1
Последнее Обновление 2020-08-22
Дата публикации 2020-08-17
Рейтинг 5.00/5 Всего 1 оценок
Разработчик https://fraserhamilton.dev
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Run In Playground",
    "version": "1.1",
    "description": "Run any JavaScript code on a page in a code playground of your choice",
    "manifest_version": 2,
    "permissions": [
        "activeTab",
        "https:\/\/codepen.io\/pen\/define",
        "https:\/\/jsfiddle.net\/api\/post\/library\/pure\/",
        "contextMenus",
        "storage"
    ],
    "background": {
        "persistent": true,
        "page": "background.html"
    },
    "browser_action": {
        "name": "Run In Playground"
    },
    "options_page": "options.html",
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "128": "icon128.png"
    }
}