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 |
Eメール | [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]" } } } |