Enhanced Glitch
Enhances the Glitch.com editor by adding missing features.
Enhanced Glitch란 무엇입니까?
Enhanced Glitch은(는) Jcc10에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Enhances the Glitch.com editor by adding missing features."입니다.
확장 프로그램 스크린샷
Enhanced Glitch 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Enhanced Glitch fixes and enhances features that are absent from the glitch.com editor. Features added include: * Adds in Code Beautifying: Ctrl-Q * Limited Code Hinting Ctrl-Space * Changes the "psst, Glitch auto-saves 八(^□^*)" to "Nice job remembering to save!" so we encourage the habit of hitting Ctrl-S since it's a valuable life skill. Also available for Firefox.
확장 프로그램 기본 정보
이름 | Enhanced Glitch |
ID | mjdoojmakfblcimigoiecmcbbgfnleib |
공식 URL | https://chromewebstore.google.com/detail/enhanced-glitch/mjdoojmakfblcimigoiecmcbbgfnleib |
설명 | Enhances the Glitch.com editor by adding missing features. |
파일 크기 | 134 KB |
설치 횟수 | 241 |
현재 버전 | 0.0.2.0 |
최근 업데이트 | 2019-07-28 |
출시 날짜 | 2019-07-27 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | Jcc10 |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://enhanced-glitch.glitch.me/ |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Enhanced Glitch", "description": "Enhances the Glitch.com editor by adding missing features.", "version": "0.0.2.0", "content_scripts": [ { "matches": [ "https:\/\/glitch.com\/edit\/*" ], "js": [ "inject.js" ], "css": [ "codeHinting.css" ] } ], "web_accessible_resources": [ "js-beautify_1.10.1_beautify.js", "js-beautify_1.10.1_beautify-css.js", "js-beautify_1.10.1_beautify-html.js", "content.js" ], "browser_action": { "default_icon": { "16": "16.png", "32": "32.png" }, "default_popup": "default_popup.html" }, "icons": { "16": "16.png", "32": "32.png", "48": "48.png", "128": "128.png" } } |