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 هو إضافة Chrome تم تطويرها بواسطة 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 للإضافة Jstris Companion
قم بتنزيل ملفات الامتداد Jstris Companion بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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]" } } } |