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
官方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"
    }
}