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
Eメール [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"
            }
        }
    }
}