BigConsole
Adds a multiline JavaScript console to the Chrome developer tools.
BigConsole क्या है?
BigConsole Isaac Sukin (IceCreamYou) द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds a multiline JavaScript console to the Chrome developer tools."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में BigConsole एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
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" } |