skribbl.io Bot

Narrows down the possible words for skribble.io.

skribbl.io Botคืออะไร?

skribbl.io Bot เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "Narrows down the possible words for skribble.io."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย skribbl.io Bot

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

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

                        This extension is intended to be used for the website, skribbl.io. Using a word bank with all of the default possible words for the game, this extension will help you narrow down which words are the solution to each round.                    

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

ชื่อ skribbl.io Bot skribbl.io Bot
ID egfjccfngpialgcfdanenhidjhcbbonp
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/skribblio-bot/egfjccfngpialgcfdanenhidjhcbbonp
คำอธิบาย Narrows down the possible words for skribble.io.
ขนาดไฟล์ 29.06 KB
จำนวนการติดตั้ง 70,116
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2020-05-17
วันที่เผยแพร่ 2020-05-16
คะแนน 3.63/5 รวมทั้งหมด 108 คะแนน
ผู้พัฒนา Unknown
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "skribbl.io Bot",
    "version": "1.0",
    "description": "Narrows down the possible words for skribble.io.",
    "icons": {
        "128": "skribbl-icon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/skribbl.io\/*"
            ],
            "js": [
                "bot.js"
            ]
        }
    ],
    "permissions": [
        "declarativeContent"
    ]
}