Jstris Companion
A simple extension for customising Jstris, this will allow you to change your skin, ghost, background, add a second key binding for…
Was ist Jstris Companion?
Jstris Companion ist eine Chrome-Erweiterung, die von Sean Earle entwickelt wurde, und ihr Hauptmerkmal ist "A simple extension for customising Jstris, this will allow you to change your skin, ghost, background, add a second key binding for…".
Erweiterungsscreenshots
Jstris Companion-Erweiterungs-CRX-Datei herunterladen
Laden Sie Jstris Companion-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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! Grundlegende Informationen zur Erweiterung
| Name | |
| ID | hcfobmlocggcombmbgpncmbknnggjlkf |
| Offizielle URL | https://chromewebstore.google.com/detail/jstris-companion/hcfobmlocggcombmbgpncmbknnggjlkf |
| Beschreibung | A simple extension for customising Jstris, this will allow you to change your skin, ghost, background, add a second key binding for… |
| Dateigröße | 12.27 KB |
| Installationsanzahl | 557 |
| Aktuelle Version | 0.3 |
| Letztes Update | 2019-10-13 |
| Veröffentlichungsdatum | 2019-10-13 |
| Bewertung | 4.43/5 Insgesamt 7 Bewertungen |
| Entwickler | Sean Earle |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | 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]"
}
}
} | |