Enhanced Glitch

Enhances the Glitch.com editor by adding missing features.

Enhanced Glitch क्या है?

Enhanced Glitch Jcc10 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Enhances the Glitch.com editor by adding missing features."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Enhanced Glitch एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम Enhanced Glitch Enhanced Glitch
ID mjdoojmakfblcimigoiecmcbbgfnleib
आधिकारिक URL https://chromewebstore.google.com/detail/enhanced-glitch/mjdoojmakfblcimigoiecmcbbgfnleib
विवरण Enhances the Glitch.com editor by adding missing features.
फ़ाइल का आकार 134 KB
स्थापना संख्या 241
वर्तमान संस्करण 0.0.2.0
अंतिम अपडेट 2019-07-28
प्रकाशन तिथि 2019-07-27
रेटिंग 5.00/5 कुल 2 रेटिंग्स
डेवलपर Jcc10
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://enhanced-glitch.glitch.me/
समर्थित भाषाएँ 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"
    }
}