BigConsole
Adds a multiline JavaScript console to the Chrome developer tools.
什麼是BigConsole?
BigConsole是由Isaac Sukin (IceCreamYou)開發的Chrome擴展程式,該擴展的主要功能是“Adds a multiline JavaScript console to the Chrome developer tools.”。
擴展截圖
下載BigConsole擴展crx文件
下載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 |
ID | klommbdmeefgobphaflhmnieheipjajm |
官方網址 | 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" } |