Enhanced Glitch

Enhances the Glitch.com editor by adding missing features.

Apa itu Enhanced Glitch?

Enhanced Glitch adalah ekstensi Chrome yang dikembangkan oleh Jcc10, dan fitur utamanya adalah "Enhances the Glitch.com editor by adding missing features.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Enhanced Glitch

Unduh file ekstensi Enhanced Glitch dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Enhanced Glitch Enhanced Glitch
ID mjdoojmakfblcimigoiecmcbbgfnleib
URL Resmi https://chromewebstore.google.com/detail/enhanced-glitch/mjdoojmakfblcimigoiecmcbbgfnleib
Deskripsi Enhances the Glitch.com editor by adding missing features.
Ukuran File 134 KB
Jumlah Instalasi 241
Versi Saat Ini 0.0.2.0
Terakhir Diperbarui 2019-07-28
Tanggal Publikasi 2019-07-27
Penilaian 5.00/5 Total 2 Penilaian
Pengembang Jcc10
Tipe Pembayaran free
Situs Ekstensi https://enhanced-glitch.glitch.me/
Bahasa yang Didukung 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"
    }
}