BigConsole

Adds a multiline JavaScript console to the Chrome developer tools.

Τι είναι το BigConsole;

Το BigConsole είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Isaac Sukin (IceCreamYou), και η κύρια λειτουργία του είναι "Adds a multiline JavaScript console to the Chrome developer tools.".

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

screenshot

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

Λήψη αρχείων επέκτασης BigConsole σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        NOTE: I do not plan to update this extension to Manifest V3, meaning it will no longer be compatible with Chrome 127+ (June 2024). Chrome Dev Tools' built-in Snippets editor has a lot of the same functionality (click the Sources pane, then choose Snippets in the left sidebar) if you also "Show console drawer" (hit Escape). It should be possible to get a horizontal layout using something like this: https://stackoverflow.com/a/16538221

----

Adds a panel to the Chrome Developer Tools that provides a multi-line split console, like in Firefox.

Includes:

 - Vertical split style multiline REPL
 - Syntax highlighting and nice editor things thanks to Ace Editor
 - Pretty-printed output
 - "Run" button or CTRL+Enter to execute code
 - "Clear" button to clear REPL
 - "History" drop-down to restore previously executed code

Compared to Chrome Dev Tools' built-in Snippets editor, BigConsole aims to help users iterate and try out code faster. Where Snippets is more like a light IDE, BigConsole is simpler and geared towards iterating on code as quickly as possible in a multiline, syntax-highlighted REPL.

The code is available at https://github.com/IceCreamYou/Chrome-BigConsole                    

Βασικές Πληροφορίες Επέκτασης

Όνομα BigConsole BigConsole
ID klommbdmeefgobphaflhmnieheipjajm
Επίσημο URL https://chromewebstore.google.com/detail/bigconsole/klommbdmeefgobphaflhmnieheipjajm
Περιγραφή Adds a multiline JavaScript console to the Chrome developer tools.
Μέγεθος Αρχείου 2.32 MB
Αριθμός Εγκαταστάσεων 3,407
Τρέχουσα Έκδοση 1.2.3
Τελευταία Ενημέρωση 2023-12-06
Ημερομηνία Δημοσίευσης 2019-03-08
Αξιολόγηση 4.37/5 Συνολικά 27 Αξιολογήσεις
Προγραμματιστής Isaac Sukin (IceCreamYou)
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/IceCreamYou/Chrome-BigConsole
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "BigConsole",
    "description": "Adds a multiline JavaScript console to the Chrome developer tools.",
    "version": "1.2.3",
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "minimum_chrome_version": "25.0",
    "devtools_page": "devtools.html",
    "options_page": "options.html"
}