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文件
下载Enhanced Glitch扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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" } } |