Code Grabber

Grabs the JavaScript code containing 'console.log'

Cos'è Code Grabber?

Code Grabber è un'estensione di Chrome sviluppata da Dzmitry Alifer, e la sua funzione principale è "Grabs the JavaScript code containing 'console.log'".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Code Grabber

Scarica i file di estensione Code Grabber in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        "JS Code Grabber" extension allows software developers quickly (in a single-click, without manual code selection) extract a code snippet from the visible area (viewport) of the browser without the necessity of selecting the code area. The code snippet should contain 'console.log'.

It might be especially helpful during interviews when you are not allowed to copy-paste-execute the suggested code snippet.                    

Informazioni di Base sull'Estensione

Nome Code Grabber Code Grabber
ID oknlpejicdfeafhemgeboejbncmdbpcl
URL Ufficiale https://chromewebstore.google.com/detail/code-grabber/oknlpejicdfeafhemgeboejbncmdbpcl
Descrizione Grabs the JavaScript code containing 'console.log'
Dimensione del File 13.43 KB
Conteggio Installazioni 181
Versione Corrente 0.3.0
Ultimo Aggiornamento 2022-12-11
Data di Pubblicazione 2022-11-14
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Dzmitry Alifer
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Code Grabber",
    "description": "Grabs the JavaScript code containing 'console.log'",
    "version": "0.3.0",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "tabs"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": "icons\/js_icon_grey_16.png"
    },
    "icons": {
        "16": "icons\/js_icon_grey_16.png",
        "32": "icons\/js_icon_grey_32.png",
        "64": "icons\/js_icon_grey_64.png"
    },
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+F",
                "mac": "MacCtrl+Shift+F"
            }
        }
    }
}