Code Grabber

Grabs the JavaScript code containing 'console.log'

Code Grabber là gì?

Code Grabber là một tiện ích mở rộng Chrome được phát triển bởi Dzmitry Alifer, và tính năng chính của nó là "Grabs the JavaScript code containing 'console.log'".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Code Grabber

Tải xuống các tệp mở rộng Code Grabber dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Code Grabber Code Grabber
ID oknlpejicdfeafhemgeboejbncmdbpcl
URL Chính Thức https://chromewebstore.google.com/detail/code-grabber/oknlpejicdfeafhemgeboejbncmdbpcl
Mô tả Grabs the JavaScript code containing 'console.log'
Kích Thước Tệp 13.43 KB
Số Lần Cài Đặt 181
Phiên Bản Hiện Tại 0.3.0
Cập Nhật Lần Cuối 2022-12-11
Ngày Phát Hành 2022-11-14
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Dzmitry Alifer
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            }
        }
    }
}