skribbl.io Bot
Narrows down the possible words for skribble.io.
Wat is skribbl.io Bot?
skribbl.io Bot is een Chrome-extensie ontwikkeld door Unknown, en de belangrijkste functie is "Narrows down the possible words for skribble.io.".
Extensie Screenshots
Download het CRX-bestand van de extensie skribbl.io Bot
Download skribbl.io Bot-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | skribbl.io Bot |
ID | egfjccfngpialgcfdanenhidjhcbbonp |
Officiële URL | https://chromewebstore.google.com/detail/skribblio-bot/egfjccfngpialgcfdanenhidjhcbbonp |
Beschrijving | Narrows down the possible words for skribble.io. |
Bestandsgrootte | 29.06 KB |
Aantal Installaties | 70,116 |
Huidige Versie | 1.0 |
Laatst Bijgewerkt | 2020-05-17 |
Publicatiedatum | 2020-05-16 |
Beoordeling | 3.63/5 Totaal 108 Beoordelingen |
Ontwikkelaar | Unknown |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } |