Skribbl Assistant

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

O que é Skribbl Assistant?

Skribbl Assistant é uma extensão do Chrome desenvolvida por https://sspathare97.com, e sua principal característica é "Fetches the Skribbl.io wordlist and displays clickable hints based on the current word's pattern.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Skribbl Assistant

Baixe arquivos de extensão Skribbl Assistant no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        # 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                    

Informações Básicas da Extensão

Nome Skribbl Assistant Skribbl Assistant
ID ohniohajdcaicipofiohnkejhmdjhile
URL Oficial https://chromewebstore.google.com/detail/skribbl-assistant/ohniohajdcaicipofiohnkejhmdjhile
Descrição Fetches the Skribbl.io wordlist and displays clickable hints based on the current word's pattern.
Tamanho do Arquivo 12.94 KB
Contagem de Instalações 10,826
Versão Atual 1.2.0
Última Atualização 2020-07-24
Data de Publicação 2020-07-20
Classificação 3.96/5 Total de 24 Avaliações
Desenvolvedor https://sspathare97.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/sspathare97/skribbl-assistant
Idiomas Suportados 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"
    }
}