Chrome JavaScript Editor
A Chrome extension that captures selected text and displays it on editor.
Chrome JavaScript Editor란 무엇입니까?
Chrome JavaScript Editor은(는) niawjunior에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A Chrome extension that captures selected text and displays it on editor."입니다.
확장 프로그램 스크린샷
Chrome JavaScript Editor 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
The Chrome Editor allows you to run modern JavaScript syntax with features such as code formatting, dark mode, auto-execution option, font size adjustments, and a context menu for code selection. Enhance your coding experience with this powerful tool.
확장 프로그램 기본 정보
이름 | Chrome JavaScript Editor |
ID | adfelndhcceedaphfhehpblofeohjmdb |
공식 URL | https://chromewebstore.google.com/detail/chrome-javascript-editor/adfelndhcceedaphfhehpblofeohjmdb |
설명 | A Chrome extension that captures selected text and displays it on editor. |
파일 크기 | 2.31 MB |
설치 횟수 | 384 |
현재 버전 | 1.0 |
최근 업데이트 | 2023-02-08 |
출시 날짜 | 2023-02-07 |
개발자 | niawjunior |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/niawjunior/chrome-editor |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Chrome JavaScript Editor", "version": "1.0", "description": "A Chrome extension that captures selected text and displays it on editor.", "permissions": [ "tabs", "contextMenus", "offscreen", "storage" ], "background": { "service_worker": "background.js" }, "action": { "default_popup": "editor.html", "default_title": "Chrome JavaScript Editor", "default_icon": { "16": "icons\/editor-icon16.png" } }, "icons": { "16": "icons\/editor-icon16.png" }, "sandbox": { "pages": [ "sandbox.html" ] } } |