skribbl.io Bot

Narrows down the possible words for skribble.io.

skribbl.io Bot là gì?

skribbl.io Bot là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "Narrows down the possible words for skribble.io.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng skribbl.io Bot

Tải xuống các tệp mở rộng skribbl.io Bot dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên skribbl.io Bot skribbl.io Bot
ID egfjccfngpialgcfdanenhidjhcbbonp
URL Chính Thức https://chromewebstore.google.com/detail/skribblio-bot/egfjccfngpialgcfdanenhidjhcbbonp
Mô tả Narrows down the possible words for skribble.io.
Kích Thước Tệp 29.06 KB
Số Lần Cài Đặt 70,116
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2020-05-17
Ngày Phát Hành 2020-05-16
Đánh Giá 3.63/5 Tổng số 108 Đánh Giá
Nhà Phát Triển Unknown
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}