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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        # 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"
    }
}