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 |
| 官方URL | 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]"
}
}
} | |