Code Grabber

Grabs the JavaScript code containing 'console.log'

Что такое Code Grabber?

Code Grabber - это расширение Chrome, разработанное Dzmitry Alifer, и его основная функция - "Grabs the JavaScript code containing 'console.log'".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Code Grabber

Скачайте файлы расширений Code Grabber в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

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

Основная информация о расширении

Название Code Grabber Code Grabber
ID oknlpejicdfeafhemgeboejbncmdbpcl
Официальный URL https://chromewebstore.google.com/detail/code-grabber/oknlpejicdfeafhemgeboejbncmdbpcl
Описание Grabs the JavaScript code containing 'console.log'
Размер файла 13.43 KB
Количество установок 181
Текущая Версия 0.3.0
Последнее Обновление 2022-12-11
Дата публикации 2022-11-14
Рейтинг 5.00/5 Всего 1 оценок
Разработчик Dzmitry Alifer
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки 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"
            }
        }
    }
}