Jstris Companion
A simple extension for customising Jstris, this will allow you to change your skin, ghost, background, add a second key binding for…
什麼是Jstris Companion?
Jstris Companion是由Sean Earle開發的Chrome擴展程式,該擴展的主要功能是“A simple extension for customising Jstris, this will allow you to change your skin, ghost, background, add a second key binding for…”。
擴展截圖
下載Jstris Companion擴展crx文件
下載Jstris Companion擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
A simple extension for customising Jstris, this will allow you to change your skin, ghost, background, add a second key binding for all keys, and inject your own CSS/JS! 擴展基本資訊
| 名稱 | |
| ID | hcfobmlocggcombmbgpncmbknnggjlkf |
| 官方網址 | https://chromewebstore.google.com/detail/jstris-companion/hcfobmlocggcombmbgpncmbknnggjlkf |
| 簡介 | A simple extension for customising Jstris, this will allow you to change your skin, ghost, background, add a second key binding for… |
| 檔案大小 | 12.27 KB |
| 安裝次數 | 557 |
| 目前版本 | 0.3 |
| 更新時間 | 2019-10-13 |
| 上架時間 | 2019-10-13 |
| 評分 | 4.43/5 共 7 次評分 |
| 開發者 | Sean Earle |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Jstris Companion",
"version": "0.3",
"permissions": [
"storage"
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"https:\/\/jstris.jezevec10.com\/*"
],
"js": [
"jstris-companion.js"
]
}
],
"browser_action": {
"default_popup": "popup.html",
"default_icon": {
"128": "icon.png"
}
},
"icons": {
"64": "icon.png"
},
"browser_specific_settings": {
"gecko": {
"id": "[email protected]"
}
}
} | |