Skribbl Assistant

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

Co to jest Skribbl Assistant?

Skribbl Assistant to rozszerzenie Chrome opracowane przez https://sspathare97.com, a jego główną funkcją jest „Fetches the Skribbl.io wordlist and displays clickable hints based on the current word's pattern.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Skribbl Assistant

Pobierz pliki rozszerzeń Skribbl Assistant w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        # 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                    

Podstawowe informacje o rozszerzeniu

Nazwa Skribbl Assistant Skribbl Assistant
ID ohniohajdcaicipofiohnkejhmdjhile
Oficjalny URL https://chromewebstore.google.com/detail/skribbl-assistant/ohniohajdcaicipofiohnkejhmdjhile
Opis Fetches the Skribbl.io wordlist and displays clickable hints based on the current word's pattern.
Rozmiar pliku 12.94 KB
Liczba instalacji 10,826
Aktualna Wersja 1.2.0
Ostatnia Aktualizacja 2020-07-24
Data Publikacji 2020-07-20
Ocena 3.96/5 Łącznie 24 Oceny
Deweloper https://sspathare97.com
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/sspathare97/skribbl-assistant
Obsługiwane Języki 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"
    }
}