skribbl.io Bot

Narrows down the possible words for skribble.io.

Apa itu skribbl.io Bot?

skribbl.io Bot adalah ekstensi Chrome yang dikembangkan oleh Unknown, dan fitur utamanya adalah "Narrows down the possible words for skribble.io.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi skribbl.io Bot

Unduh file ekstensi skribbl.io Bot dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama skribbl.io Bot skribbl.io Bot
ID egfjccfngpialgcfdanenhidjhcbbonp
URL Resmi https://chromewebstore.google.com/detail/skribblio-bot/egfjccfngpialgcfdanenhidjhcbbonp
Deskripsi Narrows down the possible words for skribble.io.
Ukuran File 29.06 KB
Jumlah Instalasi 70,116
Versi Saat Ini 1.0
Terakhir Diperbarui 2020-05-17
Tanggal Publikasi 2020-05-16
Penilaian 3.63/5 Total 108 Penilaian
Pengembang Unknown
Tipe Pembayaran free
Bahasa yang Didukung 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"
    ]
}