rawkit

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

What is rawkit?

rawkit is a Chrome extension developed by https://darcyclarke.github.io/rawkit, and its main feature is "Open the node.js devtools from the command-line; no more clicking, selecting or copy & pasting.".

Extension Screenshots

screenshot
screenshot
screenshot

Download rawkit Extension CRX File

Download rawkit extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name rawkit rawkit
ID poapmlldjpcgenaedpopfjjagnihpkim
Official URL https://chromewebstore.google.com/detail/rawkit/poapmlldjpcgenaedpopfjjagnihpkim
Description Open the node.js devtools from the command-line; no more clicking, selecting or copy & pasting.
File Size 88.13 KB
Installation Count 191
Current Version 1.2.0
Last Updated 2018-03-02
Publish Date 2018-03-02
Developer https://darcyclarke.github.io/rawkit
Email [email protected]
Payment Type free
Supported Languages 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:\/\/*\/*",
        ""
    ]
}