Code Grabber

Grabs the JavaScript code containing 'console.log'

Code Grabber란 무엇입니까?

Code Grabber은(는) Dzmitry Alifer에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Grabs the JavaScript code containing 'console.log'"입니다.

확장 프로그램 스크린샷

screenshot

Code Grabber 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
            }
        }
    }
}