Ginger BOOM

Have GingerGM shout "BOOOOM" at your own games

Ginger BOOM란 무엇입니까?

Ginger BOOM은(는) aurel.herve에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Have GingerGM shout "BOOOOM" at your own games"입니다.

확장 프로그램 스크린샷

screenshot

Ginger BOOM 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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\/*"
    ]
}