Skribbl Assistant

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

Skribbl Assistant là gì?

Skribbl Assistant là một tiện ích mở rộng Chrome được phát triển bởi https://sspathare97.com, và tính năng chính của nó là "Fetches the Skribbl.io wordlist and displays clickable hints based on the current word's pattern.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Skribbl Assistant

Tải xuống các tệp mở rộng Skribbl Assistant dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        # 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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Skribbl Assistant Skribbl Assistant
ID ohniohajdcaicipofiohnkejhmdjhile
URL Chính Thức https://chromewebstore.google.com/detail/skribbl-assistant/ohniohajdcaicipofiohnkejhmdjhile
Mô tả Fetches the Skribbl.io wordlist and displays clickable hints based on the current word's pattern.
Kích Thước Tệp 12.94 KB
Số Lần Cài Đặt 10,826
Phiên Bản Hiện Tại 1.2.0
Cập Nhật Lần Cuối 2020-07-24
Ngày Phát Hành 2020-07-20
Đánh Giá 3.96/5 Tổng số 24 Đánh Giá
Nhà Phát Triển https://sspathare97.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/sspathare97/skribbl-assistant
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}