skribbl.io Bot

Narrows down the possible words for skribble.io.

Qu'est-ce que skribbl.io Bot ?

skribbl.io Bot est une extension Chrome développée par Unknown, et sa fonction principale est "Narrows down the possible words for skribble.io.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension skribbl.io Bot

Téléchargez les fichiers d'extension skribbl.io Bot au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom skribbl.io Bot skribbl.io Bot
ID egfjccfngpialgcfdanenhidjhcbbonp
URL Officiel https://chromewebstore.google.com/detail/skribblio-bot/egfjccfngpialgcfdanenhidjhcbbonp
Description Narrows down the possible words for skribble.io.
Taille du Fichier 29.06 KB
Nombre d'Installations 70,116
Version Actuelle 1.0
Dernière Mise à Jour 2020-05-17
Date de Publication 2020-05-16
Évaluation 3.63/5 Total 108 Évaluations
Développeur Unknown
Type de Paiement free
Langues Prises en Charge 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"
    ]
}