Only move
Chrome extension that plays only moves for you on popular chess gaming sites.
ما هو Only move؟
Only move هو إضافة Chrome تم تطويرها بواسطة Unknown، والميزة الرئيسية لها هي "Chrome extension that plays only moves for you on popular chess gaming sites.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Only move
قم بتنزيل ملفات الامتداد Only move بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
OnlyMove can save you time in critical online games. I often find myself when premoving, and my opponent makes me check which leads to losing very important seconds. With OnlyMove you simply install the chrome extension and it detects when you can make only move and it makes it for you.
معلومات أساسية عن التمديد
الاسم | Only move |
ID | mbgjmmmhonnpfcflohnpogdfafelogkj |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/only-move/mbgjmmmhonnpfcflohnpogdfafelogkj |
الوصف | Chrome extension that plays only moves for you on popular chess gaming sites. |
حجم الملف | 427 KB |
عدد التثبيتات | 2,012 |
النسخة الحالية | 1.0.0 |
آخر تحديث | 2020-05-20 |
تاريخ النشر | 2020-05-20 |
تقييم | 3.20/5 مجموع تقييمات 5 |
المطور | Unknown |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Chrome extension that plays only moves for you on popular chess gaming sites.", "version": "1.0.0", "name": "Only move", "manifest_version": 2, "options_page": "options.html", "background": { "persistent": false, "scripts": [ "background.bundle.js" ] }, "permissions": [ "storage", "declarativeContent", "activeTab" ], "content_scripts": [ { "matches": [ "https:\/\/lichess.org\/*", "https:\/\/www.chess.com\/*" ], "js": [ "inject.bundle.js", "stockfish.js", "stockfish.asm.js" ] } ], "page_action": { "default_popup": "popup.html", "default_icon": { "16": "icon-16.png", "32": "icon-32.png", "48": "icon-48.png", "128": "icon-128.png" } }, "icons": { "16": "icon-16.png", "32": "icon-32.png", "48": "icon-48.png", "128": "icon-128.png" }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |