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" } } |