Skribbl Assistant

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

Was ist Skribbl Assistant?

Skribbl Assistant ist eine Chrome-Erweiterung, die von https://sspathare97.com entwickelt wurde, und ihr Hauptmerkmal ist "Fetches the Skribbl.io wordlist and displays clickable hints based on the current word's pattern.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Skribbl Assistant-Erweiterungs-CRX-Datei herunterladen

Laden Sie Skribbl Assistant-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        # 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                    

Grundlegende Informationen zur Erweiterung

Name Skribbl Assistant Skribbl Assistant
ID ohniohajdcaicipofiohnkejhmdjhile
Offizielle URL https://chromewebstore.google.com/detail/skribbl-assistant/ohniohajdcaicipofiohnkejhmdjhile
Beschreibung Fetches the Skribbl.io wordlist and displays clickable hints based on the current word's pattern.
Dateigröße 12.94 KB
Installationsanzahl 10,826
Aktuelle Version 1.2.0
Letztes Update 2020-07-24
Veröffentlichungsdatum 2020-07-20
Bewertung 3.96/5 Insgesamt 24 Bewertungen
Entwickler https://sspathare97.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/sspathare97/skribbl-assistant
Unterstützte Sprachen 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"
    }
}