Skribbl.io Helper

Gives you potential answers on skribbl.io

O que é Skribbl.io Helper?

Skribbl.io Helper é uma extensão do Chrome desenvolvida por Smartjacky, e sua principal característica é "Gives you potential answers on skribbl.io".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Skribbl.io Helper

Baixe arquivos de extensão Skribbl.io Helper 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

                        Skribblio Helper is a chrome extension that provides potential answers automatically to its users. It interprets the hints given by skribbl.io and finds all possible answers among 3600+ words.

Features:
- Support for English, German, Spanish and French
- Click on the word to have it submitted
- Submitted words will be removed from the word list
- The word list will be updated automatically when more hints are given
- Search function to further narrow down potential answers
- Use the tab key to cycle through words then press the enter key to quickly submit
- Pressing the control or the command key will return to chat and clears it
- Change between 4 sorting orders (Alphabetical, Most Picked, Difficulty, Mixed)
- Support for custom word lists and have the ability to disable the official word list                    

Informações Básicas da Extensão

Nome Skribbl.io Helper Skribbl.io Helper
ID pnfncicapicbmndoelcfebipoibdackb
URL Oficial https://chromewebstore.google.com/detail/skribblio-helper/pnfncicapicbmndoelcfebipoibdackb
Descrição Gives you potential answers on skribbl.io
Tamanho do Arquivo 14.77 KB
Contagem de Instalações 12,638
Versão Atual 1.6.2
Última Atualização 2023-04-21
Data de Publicação 2022-04-05
Classificação 3.71/5 Total de 21 Avaliações
Desenvolvedor Smartjacky
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/wlauyeung/Skribblio-Helper
URL da Página de Ajuda https://github.com/wlauyeung/Skribblio-Helper/issues
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Skribbl.io Helper",
    "description": "Gives you potential answers on skribbl.io",
    "version": "1.6.2",
    "manifest_version": 3,
    "author": "Smartjacky",
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "index.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/skribbl.io\/*"
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage"
    ],
    "host_permissions": [
        "https:\/\/wlauyeung.github.io\/Skribblio-Word-Bank\/*"
    ],
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "64": "images\/icon64.png",
        "128": "images\/icon128.png"
    }
}