Skribbl Assistant
Fetches the Skribbl.io wordlist and displays clickable hints based on the current word's pattern.
Что такое Skribbl Assistant?
Skribbl Assistant - это расширение Chrome, разработанное https://sspathare97.com, и его основная функция - "Fetches the Skribbl.io wordlist and displays clickable hints based on the current word's pattern.".
Снимки экрана расширения
Скачать файл CRX расширения Skribbl Assistant
Скачайте файлы расширений 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 Основная информация о расширении
| Название | |
| 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"
}
} | |