Only move
Chrome extension that plays only moves for you on popular chess gaming sites.
Only move क्या है?
Only move Unknown द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Chrome extension that plays only moves for you on popular chess gaming sites."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Only move एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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'" } |