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."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Only move

ดาวน์โหลดไฟล์ส่วนขยาย Only move ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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 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'"
}