Skribbl Assistant

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

ما هو Skribbl Assistant؟

Skribbl Assistant هو إضافة Chrome تم تطويرها بواسطة https://sspathare97.com، والميزة الرئيسية لها هي "Fetches the Skribbl.io wordlist and displays clickable hints based on the current word's pattern.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Skribbl Assistant

قم بتنزيل ملفات الامتداد Skribbl Assistant بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        # 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                    

معلومات أساسية عن التمديد

الاسم Skribbl Assistant Skribbl Assistant
ID ohniohajdcaicipofiohnkejhmdjhile
عنوان URL الرسمي https://chromewebstore.google.com/detail/skribbl-assistant/ohniohajdcaicipofiohnkejhmdjhile
الوصف Fetches the Skribbl.io wordlist and displays clickable hints based on the current word's pattern.
حجم الملف 12.94 KB
عدد التثبيتات 10,826
النسخة الحالية 1.2.0
آخر تحديث 2020-07-24
تاريخ النشر 2020-07-20
تقييم 3.96/5 مجموع تقييمات 24
المطور https://sspathare97.com
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/sspathare97/skribbl-assistant
اللغات المدعومة 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"
    }
}