Skribbl Assistant

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

Cos'è Skribbl Assistant?

Skribbl Assistant è un'estensione di Chrome sviluppata da https://sspathare97.com, e la sua funzione principale è "Fetches the Skribbl.io wordlist and displays clickable hints based on the current word's pattern.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Skribbl Assistant

Scarica i file di estensione Skribbl Assistant in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        # 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                    

Informazioni di Base sull'Estensione

Nome Skribbl Assistant Skribbl Assistant
ID ohniohajdcaicipofiohnkejhmdjhile
URL Ufficiale https://chromewebstore.google.com/detail/skribbl-assistant/ohniohajdcaicipofiohnkejhmdjhile
Descrizione Fetches the Skribbl.io wordlist and displays clickable hints based on the current word's pattern.
Dimensione del File 12.94 KB
Conteggio Installazioni 10,826
Versione Corrente 1.2.0
Ultimo Aggiornamento 2020-07-24
Data di Pubblicazione 2020-07-20
Valutazione 3.96/5 Totale 24 Valutazioni
Sviluppatore https://sspathare97.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/sspathare97/skribbl-assistant
Lingue Supportate 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"
    }
}