Skribbl Assistant

Fetches the Skribbl.io wordlist and displays clickable hints based on the current word's pattern.

Wat is Skribbl Assistant?

Skribbl Assistant is een Chrome-extensie ontwikkeld door https://sspathare97.com, en de belangrijkste functie is "Fetches the Skribbl.io wordlist and displays clickable hints based on the current word's pattern.".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Skribbl Assistant

Download Skribbl Assistant-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

                        # How to use
- Press ALT to enable/disable Skribbl Assistant
- Click on a hint to submit it
- Type in the chatbox to highlight hints.

# Exact pattern matching: 
_______ will suggest catfish
__ ____ will suggest Mr Bean
__-__ will suggest yo-yo  

# Check out Github repository
https://github.com/sspathare97/skribbl-assistant

# Notes
- Since, it uses a fixed wordlist, it may not suggest new words if Skribbl.io updates the wordlist. Also, it will not work for custom words in private rooms
- Don't click on multiple hints per second as rapidly submitting multiple words will result in getting kicked out by Skribbl.io                    

Basisinformatie over de Extensie

Naam Skribbl Assistant Skribbl Assistant
ID ohniohajdcaicipofiohnkejhmdjhile
Officiële URL https://chromewebstore.google.com/detail/skribbl-assistant/ohniohajdcaicipofiohnkejhmdjhile
Beschrijving Fetches the Skribbl.io wordlist and displays clickable hints based on the current word's pattern.
Bestandsgrootte 12.94 KB
Aantal Installaties 10,826
Huidige Versie 1.2.0
Laatst Bijgewerkt 2020-07-24
Publicatiedatum 2020-07-20
Beoordeling 3.96/5 Totaal 24 Beoordelingen
Ontwikkelaar https://sspathare97.com
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/sspathare97/skribbl-assistant
Ondersteunde Talen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Skribbl Assistant",
    "version": "1.2.0",
    "description": "Fetches the Skribbl.io wordlist and displays clickable hints based on the current word's pattern.",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/skribbl.io\/*"
            ],
            "js": [
                "skribbl-assistant.js"
            ]
        }
    ],
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    }
}