Skribbl Assistant

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

Apa itu Skribbl Assistant?

Skribbl Assistant adalah ekstensi Chrome yang dikembangkan oleh https://sspathare97.com, dan fitur utamanya adalah "Fetches the Skribbl.io wordlist and displays clickable hints based on the current word's pattern.".

Screenshot Ekstensi

screenshot
screenshot
screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Skribbl Assistant

Unduh file ekstensi Skribbl Assistant dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        # 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                    

Informasi Dasar Ekstensi

Nama Skribbl Assistant Skribbl Assistant
ID ohniohajdcaicipofiohnkejhmdjhile
URL Resmi https://chromewebstore.google.com/detail/skribbl-assistant/ohniohajdcaicipofiohnkejhmdjhile
Deskripsi Fetches the Skribbl.io wordlist and displays clickable hints based on the current word's pattern.
Ukuran File 12.94 KB
Jumlah Instalasi 10,826
Versi Saat Ini 1.2.0
Terakhir Diperbarui 2020-07-24
Tanggal Publikasi 2020-07-20
Penilaian 3.96/5 Total 24 Penilaian
Pengembang https://sspathare97.com
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/sspathare97/skribbl-assistant
Bahasa yang Didukung 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"
    }
}