skribbl.io Bot

Narrows down the possible words for skribble.io.

Cos'è skribbl.io Bot?

skribbl.io Bot è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "Narrows down the possible words for skribble.io.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione skribbl.io Bot

Scarica i file di estensione skribbl.io Bot in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome skribbl.io Bot skribbl.io Bot
ID egfjccfngpialgcfdanenhidjhcbbonp
URL Ufficiale https://chromewebstore.google.com/detail/skribblio-bot/egfjccfngpialgcfdanenhidjhcbbonp
Descrizione Narrows down the possible words for skribble.io.
Dimensione del File 29.06 KB
Conteggio Installazioni 70,116
Versione Corrente 1.0
Ultimo Aggiornamento 2020-05-17
Data di Pubblicazione 2020-05-16
Valutazione 3.63/5 Totale 108 Valutazioni
Sviluppatore Unknown
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}