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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A simple extension for customising Jstris, this will allow you to change your skin, ghost, background, add a second key binding for…"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Jstris Companion एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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]" } } } |