LichessBulletBlock

Remove Bullet Games from Lichess, optionally block Blitz Games and Puzzle Variants

LichessBulletBlockคืออะไร?

LichessBulletBlock เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jan1577 และคุณลักษณะหลักของมันคือ "Remove Bullet Games from Lichess, optionally block Blitz Games and Puzzle Variants"

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        You are playing too many Bullet Games or Puzzle Variants, wasting your time by chasing the next dopamine push?

This extension removes all options on lichess.org to start a Bullet Game, with the option to additionally block Blitz Games.

Improve your skills by playing Blitz, Rapid and Classical. Take your chess to the next level by thinking more deeply about your moves instead of rushing from game to game.


The extension removes the option to start a bullet game at four different locations:

1. Removing the 1+0 and 2+1 Bullet Games from the Quick pairing menu
2. Filtering and removing all Bullet Games from the Lobby
3. If you start a game by clicking "Create a game", the slider is changed to allow only 3+ minutes
4. If you go to your recently played games, the extension checks whether the game is a Bullet Game. If so, the "New Opponent" button is removed.

Using the options page, all of these measures can also be applied to Blitz Games. Furthermore, it is possible to remove any Puzzle Variant and enable or disable quotes added to the page.                    

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

ชื่อ LichessBulletBlock LichessBulletBlock
ID hggjliiolhipmgoomadfmpdlafknhpmd
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/lichessbulletblock/hggjliiolhipmgoomadfmpdlafknhpmd
คำอธิบาย Remove Bullet Games from Lichess, optionally block Blitz Games and Puzzle Variants
ขนาดไฟล์ 27.62 KB
จำนวนการติดตั้ง 30
เวอร์ชันปัจจุบัน 1.2.0
อัปเดตครั้งล่าสุด 2023-12-03
วันที่เผยแพร่ 2022-08-03
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา jan1577
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "LichessBulletBlock",
    "version": "1.2.0",
    "description": "Remove Bullet Games from Lichess, optionally block Blitz Games and Puzzle Variants",
    "content_security_policy": {
        "default-src": "self",
        "frame-ancestors": "none"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "\/images\/16.png",
        "48": "\/images\/48.png",
        "128": "\/images\/128.png"
    },
    "action": {
        "default_icon": {
            "16": "\/images\/16.png",
            "48": "\/images\/48.png",
            "128": "\/images\/128.png"
        }
    },
    "content_scripts": [
        {
            "js": [
                "content.js",
                "puzzle.js"
            ],
            "matches": [
                "https:\/\/lichess.org\/*"
            ]
        },
        {
            "js": [
                "quotes.js"
            ],
            "matches": [
                "https:\/\/lichess.org\/"
            ]
        }
    ]
}