Enhanced Glitch

Enhances the Glitch.com editor by adding missing features.

Vad är Enhanced Glitch?

Enhanced Glitch är en Chrome-tillägg utvecklad av Jcc10, och dess huvudfunktion är "Enhances the Glitch.com editor by adding missing features.".

Tilläggsskärmbilder

screenshot

Ladda ner Enhanced Glitch-förlängningens CRX-fil

Ladda ner Enhanced Glitch-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Enhanced Glitch Enhanced Glitch
ID mjdoojmakfblcimigoiecmcbbgfnleib
Officiell webbadress https://chromewebstore.google.com/detail/enhanced-glitch/mjdoojmakfblcimigoiecmcbbgfnleib
Beskrivning Enhances the Glitch.com editor by adding missing features.
Filstorlek 134 KB
Antal Installationer 241
Aktuell Version 0.0.2.0
Senast Uppdaterad 2019-07-28
Publiceringsdatum 2019-07-27
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare Jcc10
Betalningssätt free
Tilläggswebbplats https://enhanced-glitch.glitch.me/
Stödda Språk 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"
    }
}