Enhanced Glitch

Enhances the Glitch.com editor by adding missing features.

Enhanced Glitchคืออะไร?

Enhanced Glitch เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Jcc10 และคุณลักษณะหลักของมันคือ "Enhances the Glitch.com editor by adding missing features."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Enhanced Glitch

ดาวน์โหลดไฟล์ส่วนขยาย Enhanced Glitch ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
    }
}