skribbl.io Bot

Narrows down the possible words for skribble.io.

What is skribbl.io Bot?

skribbl.io Bot is a Chrome extension developed by Unknown, and its main feature is "Narrows down the possible words for skribble.io.".

Extension Screenshots

screenshot

Download skribbl.io Bot Extension CRX File

Download skribbl.io Bot extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name skribbl.io Bot skribbl.io Bot
ID egfjccfngpialgcfdanenhidjhcbbonp
Official URL https://chromewebstore.google.com/detail/skribblio-bot/egfjccfngpialgcfdanenhidjhcbbonp
Description Narrows down the possible words for skribble.io.
File Size 29.06 KB
Installation Count 70,116
Current Version 1.0
Last Updated 2020-05-17
Publish Date 2020-05-16
Rating 3.63/5 Total 108 Ratings
Developer Unknown
Payment Type free
Supported Languages 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"
    ]
}