Code Grabber

Grabs the JavaScript code containing 'console.log'

Τι είναι το Code Grabber;

Το Code Grabber είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Dzmitry Alifer, και η κύρια λειτουργία του είναι "Grabs the JavaScript code containing 'console.log'".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Code Grabber

Λήψη αρχείων επέκτασης 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"
            }
        }
    }
}