Code Grabber

Grabs the JavaScript code containing 'console.log'

O que é Code Grabber?

Code Grabber é uma extensão do Chrome desenvolvida por Dzmitry Alifer, e sua principal característica é "Grabs the JavaScript code containing 'console.log'".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Code Grabber

Baixe arquivos de extensão Code Grabber no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome Code Grabber Code Grabber
ID oknlpejicdfeafhemgeboejbncmdbpcl
URL Oficial https://chromewebstore.google.com/detail/code-grabber/oknlpejicdfeafhemgeboejbncmdbpcl
Descrição Grabs the JavaScript code containing 'console.log'
Tamanho do Arquivo 13.43 KB
Contagem de Instalações 181
Versão Atual 0.3.0
Última Atualização 2022-12-11
Data de Publicação 2022-11-14
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor Dzmitry Alifer
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
            }
        }
    }
}