Enhanced Glitch
Enhances the Glitch.com editor by adding missing features.
O que é Enhanced Glitch?
Enhanced Glitch é uma extensão do Chrome desenvolvida por Jcc10, e sua principal característica é "Enhances the Glitch.com editor by adding missing features.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Enhanced Glitch
Baixe arquivos de extensão Enhanced Glitch no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Enhanced Glitch |
ID | mjdoojmakfblcimigoiecmcbbgfnleib |
URL Oficial | https://chromewebstore.google.com/detail/enhanced-glitch/mjdoojmakfblcimigoiecmcbbgfnleib |
Descrição | Enhances the Glitch.com editor by adding missing features. |
Tamanho do Arquivo | 134 KB |
Contagem de Instalações | 241 |
Versão Atual | 0.0.2.0 |
Última Atualização | 2019-07-28 |
Data de Publicação | 2019-07-27 |
Classificação | 5.00/5 Total de 2 Avaliações |
Desenvolvedor | Jcc10 |
Tipo de Pagamento | free |
Site da Extensão | https://enhanced-glitch.glitch.me/ |
Idiomas Suportados | 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" } } |