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文件

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