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