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文件

下載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
官方網址 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"
    }
}