Ginger BOOM

Have GingerGM shout "BOOOOM" at your own games

Ginger BOOMคืออะไร?

Ginger BOOM เป็นส่วนขยายของ Chrome ที่พัฒนาโดย aurel.herve และคุณลักษณะหลักของมันคือ "Have GingerGM shout "BOOOOM" at your own games"

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

screenshot

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

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

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

                        Sometimes it's not enough to spot the proper chess tactic, or a nice checkmate.
Sometimes you also have to shout BOOOOM while moving your piece.

This extension will bring GingerGM to the rescue, so he can shout with you event louder.

INSTRUCTIONS: When browsing a webpage, click on the 'BOOM' button (right to your navbar) when you feel like it is time to celebrate.

New on 1.6.0 : 
  - You can now enable/disable autowins.
  - You can now enable/disable swearing

The code is open-sourced, and can be found here: https://github.com/aherve/gingerBoom                    

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

ชื่อ Ginger BOOM Ginger BOOM
ID ooakefhdmpbfcjflbmejbgkmnjiianao
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/ginger-boom/ooakefhdmpbfcjflbmejbgkmnjiianao
คำอธิบาย Have GingerGM shout "BOOOOM" at your own games
ขนาดไฟล์ 2.14 MB
จำนวนการติดตั้ง 75
เวอร์ชันปัจจุบัน 1.7.0
อัปเดตครั้งล่าสุด 2017-12-14
วันที่เผยแพร่ 2017-12-14
คะแนน 5.00/5 รวมทั้งหมด 16 คะแนน
ผู้พัฒนา aurel.herve
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "author": "Aur\u00e9lien Herv\u00e9",
    "name": "Ginger BOOM",
    "description": "Have GingerGM shout \"BOOOOM\" at your own games",
    "version": "1.7.0",
    "icons": {
        "16": "assets\/boom16.png",
        "48": "assets\/boom48.png",
        "128": "assets\/boom128.png",
        "256": "assets\/boom256.png"
    },
    "options_page": "src\/options.html",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "src\/ga-config.js",
                "src\/ga.js",
                "src\/play.js",
                "src\/content.js"
            ],
            "css": [
                "src\/content.css"
            ]
        },
        {
            "matches": [
                "*:\/\/www.chess.com\/*"
            ],
            "js": [
                "src\/play.js",
                "src\/chess-dot-com-content.js"
            ],
            "css": [
                "src\/content.css"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "assets\/boom256.png",
        "default_popup": "popup.html",
        "default_title": "BOOM !"
    },
    "permissions": [
        "storage",
        "activeTab"
    ],
    "web_accessible_resources": [
        "assets\/*"
    ]
}