Skribbl Assistant
Fetches the Skribbl.io wordlist and displays clickable hints based on the current word's pattern.
Vad är Skribbl Assistant?
Skribbl Assistant är en Chrome-tillägg utvecklad av https://sspathare97.com, och dess huvudfunktion är "Fetches the Skribbl.io wordlist and displays clickable hints based on the current word's pattern.".
Tilläggsskärmbilder
Ladda ner Skribbl Assistant-förlängningens CRX-fil
Ladda ner Skribbl Assistant-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
# 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 Grundläggande Information om Tillägg
| Namn | |
| ID | ohniohajdcaicipofiohnkejhmdjhile |
| Officiell webbadress | https://chromewebstore.google.com/detail/skribbl-assistant/ohniohajdcaicipofiohnkejhmdjhile |
| Beskrivning | Fetches the Skribbl.io wordlist and displays clickable hints based on the current word's pattern. |
| Filstorlek | 12.94 KB |
| Antal Installationer | 10,826 |
| Aktuell Version | 1.2.0 |
| Senast Uppdaterad | 2020-07-24 |
| Publiceringsdatum | 2020-07-20 |
| Betyg | 3.96/5 Totalt 24 Betyg |
| Utvecklare | https://sspathare97.com |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/sspathare97/skribbl-assistant |
| Stödda Språk | 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"
}
} | |