rawkit

Open the node.js devtools from the command-line; no more clicking, selecting or copy & pasting.

Что такое rawkit?

rawkit - это расширение Chrome, разработанное https://darcyclarke.github.io/rawkit, и его основная функция - "Open the node.js devtools from the command-line; no more clicking, selecting or copy & pasting.".

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

screenshot
screenshot
screenshot

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

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

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

                        rawkit grabs the chrome inspector URL returned from the node --inspect command and immediately opens devtools. No more clicking, selecting, copying/pasting or navigating. Just run the command and jump into debugging.                    

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

Название rawkit rawkit
ID poapmlldjpcgenaedpopfjjagnihpkim
Официальный URL https://chromewebstore.google.com/detail/rawkit/poapmlldjpcgenaedpopfjjagnihpkim
Описание Open the node.js devtools from the command-line; no more clicking, selecting or copy & pasting.
Размер файла 88.13 KB
Количество установок 191
Текущая Версия 1.2.0
Последнее Обновление 2018-03-02
Дата публикации 2018-03-02
Разработчик https://darcyclarke.github.io/rawkit
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "rawkit",
    "author": "Darcy Clarke ",
    "description": "Open the node.js devtools from the command-line; no more clicking, selecting or copy & pasting.",
    "version": "1.2.0",
    "homepage_url": "https:\/\/github.com\/darcyclarke\/rawkit",
    "incognito": "spanning",
    "offline_enabled": true,
    "background": {
        "scripts": [
            "app.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "browser_action": {
        "default_icon": "icon-128.png"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        ""
    ]
}