Skribbl Assistant

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

Skribbl Assistant란 무엇입니까?

Skribbl Assistant은(는) https://sspathare97.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Fetches the Skribbl.io wordlist and displays clickable hints based on the current word's pattern."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Skribbl Assistant 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    }
}