Chess.com Hydrated

Additional features for chess.com

Chess.com Hydratedคืออะไร?

Chess.com Hydrated เป็นส่วนขยายของ Chrome ที่พัฒนาโดย kris.brethower และคุณลักษณะหลักของมันคือ "Additional features for chess.com"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Chess.com Hydrated

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

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

                        This extension provides new methods of manually drawing arrows on the chess board to plan out your moves:

• 🔗 Hold right-click then left-click to draw arrows in chain mode. This means that the next arrow will start where the previous arrow ended.
• 🌸 Hold middle-click then left-click to draw arrows in flower mode. This means that all arrows will start from the square you middle-clicked.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Chess.com Hydrated Chess.com Hydrated
ID iglihljdgnhnoahhpadanelfnkclnnda
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/chesscom-hydrated/iglihljdgnhnoahhpadanelfnkclnnda
คำอธิบาย Additional features for chess.com
ขนาดไฟล์ 573 KB
จำนวนการติดตั้ง 52
เวอร์ชันปัจจุบัน 2023.10.16
อัปเดตครั้งล่าสุด 2023-10-16
วันที่เผยแพร่ 2023-01-10
ผู้พัฒนา kris.brethower
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Chess.com Hydrated",
    "version": "2023.10.16",
    "manifest_version": 3,
    "description": "Additional features for chess.com",
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.chess.com\/*"
            ],
            "js": [
                "content_scripts\/init.js"
            ],
            "all_frames": true
        }
    ],
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "60": "images\/icon-60.png",
        "128": "images\/icon-128.png",
        "256": "images\/icon-256.png"
    },
    "action": {
        "default_title": "Chess.com Hydrated",
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "*"
            ],
            "matches": [
                ""
            ]
        }
    ]
}