Enhanced Glitch
Enhances the Glitch.com editor by adding missing features.
Wat is Enhanced Glitch?
Enhanced Glitch is een Chrome-extensie ontwikkeld door Jcc10, en de belangrijkste functie is "Enhances the Glitch.com editor by adding missing features.".
Extensie Screenshots
Download het CRX-bestand van de extensie Enhanced Glitch
Download Enhanced Glitch-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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. Basisinformatie over de Extensie
| Naam | |
| ID | mjdoojmakfblcimigoiecmcbbgfnleib |
| Officiële URL | https://chromewebstore.google.com/detail/enhanced-glitch/mjdoojmakfblcimigoiecmcbbgfnleib |
| Beschrijving | Enhances the Glitch.com editor by adding missing features. |
| Bestandsgrootte | 134 KB |
| Aantal Installaties | 241 |
| Huidige Versie | 0.0.2.0 |
| Laatst Bijgewerkt | 2019-07-28 |
| Publicatiedatum | 2019-07-27 |
| Beoordeling | 5.00/5 Totaal 2 Beoordelingen |
| Ontwikkelaar | Jcc10 |
| Betalingswijze | free |
| Extensiewebsite | https://enhanced-glitch.glitch.me/ |
| Ondersteunde Talen | 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"
}
} | |