Code Grabber

Grabs the JavaScript code containing 'console.log'

Co je Code Grabber?

Code Grabber je rozšíření Chrome vyvinuté Dzmitry Alifer, a jeho hlavní funkcí je „Grabs the JavaScript code containing 'console.log'“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Code Grabber

Stáhněte si soubory rozšíření Code Grabber ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        "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.                    

Základní Informace o Rozšíření

Název Code Grabber Code Grabber
ID oknlpejicdfeafhemgeboejbncmdbpcl
Oficiální URL https://chromewebstore.google.com/detail/code-grabber/oknlpejicdfeafhemgeboejbncmdbpcl
Popis Grabs the JavaScript code containing 'console.log'
Velikost souboru 13.43 KB
Počet instalací 181
Aktuální Verze 0.3.0
Poslední Aktualizace 2022-12-11
Datum Vydání 2022-11-14
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář Dzmitry Alifer
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
            }
        }
    }
}