Enhanced Glitch
Enhances the Glitch.com editor by adding missing features.
什麼是Enhanced Glitch?
Enhanced Glitch是由Jcc10開發的Chrome擴展程式,該擴展的主要功能是“Enhances the Glitch.com editor by adding missing features.”。
擴展截圖
下載Enhanced Glitch擴展crx文件
下載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. 擴展基本資訊
| 名稱 | |
| ID | mjdoojmakfblcimigoiecmcbbgfnleib |
| 官方網址 | 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"
}
} | |