Enhanced Glitch
Enhances the Glitch.com editor by adding missing features.
Cos'è Enhanced Glitch?
Enhanced Glitch è un'estensione di Chrome sviluppata da Jcc10, e la sua funzione principale è "Enhances the Glitch.com editor by adding missing features.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Enhanced Glitch
Scarica i file di estensione Enhanced Glitch in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Enhanced Glitch |
ID | mjdoojmakfblcimigoiecmcbbgfnleib |
URL Ufficiale | https://chromewebstore.google.com/detail/enhanced-glitch/mjdoojmakfblcimigoiecmcbbgfnleib |
Descrizione | Enhances the Glitch.com editor by adding missing features. |
Dimensione del File | 134 KB |
Conteggio Installazioni | 241 |
Versione Corrente | 0.0.2.0 |
Ultimo Aggiornamento | 2019-07-28 |
Data di Pubblicazione | 2019-07-27 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | Jcc10 |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://enhanced-glitch.glitch.me/ |
Lingue Supportate | 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" } } |