Skribbl Assistant

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

Hvad er Skribbl Assistant?

Skribbl Assistant er en Chrome-udvidelse udviklet af https://sspathare97.com, og dens hovedfunktion er "Fetches the Skribbl.io wordlist and displays clickable hints based on the current word's pattern.".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot
screenshot
screenshot

Download Skribbl Assistant-udvidelses-CRX-fil

Download Skribbl Assistant-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        # 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                    

Grundlæggende oplysninger om udvidelsen

Navn Skribbl Assistant Skribbl Assistant
ID ohniohajdcaicipofiohnkejhmdjhile
Officiel URL https://chromewebstore.google.com/detail/skribbl-assistant/ohniohajdcaicipofiohnkejhmdjhile
Beskrivelse Fetches the Skribbl.io wordlist and displays clickable hints based on the current word's pattern.
Filstørrelse 12.94 KB
Antal Installationer 10,826
Nuværende Version 1.2.0
Senest Opdateret 2020-07-24
Udgivelsesdato 2020-07-20
Bedømmelse 3.96/5 Samlet 24 Bedømmelser
Udvikler https://sspathare97.com
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/sspathare97/skribbl-assistant
Understøttede Sprog 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"
    }
}