Skribbl Assistant
Fetches the Skribbl.io wordlist and displays clickable hints based on the current word's pattern.
¿Qué es Skribbl Assistant?
Skribbl Assistant es una extensión de Chrome desarrollada por https://sspathare97.com, y su función principal es "Fetches the Skribbl.io wordlist and displays clickable hints based on the current word's pattern.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Skribbl Assistant
Descarga archivos de extensión Skribbl Assistant en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
# 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
Información Básica de la Extensión
Nombre | Skribbl Assistant |
ID | ohniohajdcaicipofiohnkejhmdjhile |
URL Oficial | https://chromewebstore.google.com/detail/skribbl-assistant/ohniohajdcaicipofiohnkejhmdjhile |
Descripción | Fetches the Skribbl.io wordlist and displays clickable hints based on the current word's pattern. |
Tamaño del Archivo | 12.94 KB |
Cantidad de Instalaciones | 10,826 |
Versión Actual | 1.2.0 |
Última Actualización | 2020-07-24 |
Fecha de Publicación | 2020-07-20 |
Calificación | 3.96/5 Total de 24 Calificaciones |
Desarrollador | https://sspathare97.com |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/sspathare97/skribbl-assistant |
Idiomas Soportados | 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" } } |