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."입니다.

확장 프로그램 스크린샷

screenshot

BigConsole 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 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"
}