Enhanced Glitch
Enhances the Glitch.com editor by adding missing features.
Enhanced Glitch là gì?
Enhanced Glitch là một tiện ích mở rộng Chrome được phát triển bởi Jcc10, và tính năng chính của nó là "Enhances the Glitch.com editor by adding missing features.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Enhanced Glitch
Tải xuống các tệp mở rộng Enhanced Glitch dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Enhanced Glitch |
ID | mjdoojmakfblcimigoiecmcbbgfnleib |
URL Chính Thức | https://chromewebstore.google.com/detail/enhanced-glitch/mjdoojmakfblcimigoiecmcbbgfnleib |
Mô tả | Enhances the Glitch.com editor by adding missing features. |
Kích Thước Tệp | 134 KB |
Số Lần Cài Đặt | 241 |
Phiên Bản Hiện Tại | 0.0.2.0 |
Cập Nhật Lần Cuối | 2019-07-28 |
Ngày Phát Hành | 2019-07-27 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | Jcc10 |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://enhanced-glitch.glitch.me/ |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |