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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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