rawkit

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

Vad är rawkit?

rawkit är en Chrome-tillägg utvecklad av https://darcyclarke.github.io/rawkit, och dess huvudfunktion är "Open the node.js devtools from the command-line; no more clicking, selecting or copy & pasting.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner rawkit-förlängningens CRX-fil

Ladda ner rawkit-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn rawkit rawkit
ID poapmlldjpcgenaedpopfjjagnihpkim
Officiell webbadress https://chromewebstore.google.com/detail/rawkit/poapmlldjpcgenaedpopfjjagnihpkim
Beskrivning Open the node.js devtools from the command-line; no more clicking, selecting or copy & pasting.
Filstorlek 88.13 KB
Antal Installationer 191
Aktuell Version 1.2.0
Senast Uppdaterad 2018-03-02
Publiceringsdatum 2018-03-02
Utvecklare https://darcyclarke.github.io/rawkit
E-post [email protected]
Betalningssätt free
Stödda Språk 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:\/\/*\/*",
        ""
    ]
}