Code Grabber

Grabs the JavaScript code containing 'console.log'

Code Grabber क्या है?

Code Grabber Dzmitry Alifer द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Grabs the JavaScript code containing 'console.log'"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Code Grabber एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
            }
        }
    }
}