Skribbl.io Helper
Gives you potential answers on skribbl.io
Was ist Skribbl.io Helper?
Skribbl.io Helper ist eine Chrome-Erweiterung, die von Smartjacky entwickelt wurde, und ihr Hauptmerkmal ist "Gives you potential answers on skribbl.io".
Erweiterungsscreenshots
Skribbl.io Helper-Erweiterungs-CRX-Datei herunterladen
Laden Sie Skribbl.io Helper-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | pnfncicapicbmndoelcfebipoibdackb |
| Offizielle URL | https://chromewebstore.google.com/detail/skribblio-helper/pnfncicapicbmndoelcfebipoibdackb |
| Beschreibung | Gives you potential answers on skribbl.io |
| Dateigröße | 14.77 KB |
| Installationsanzahl | 12,638 |
| Aktuelle Version | 1.6.2 |
| Letztes Update | 2023-04-21 |
| Veröffentlichungsdatum | 2022-04-05 |
| Bewertung | 3.71/5 Insgesamt 21 Bewertungen |
| Entwickler | Smartjacky |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/wlauyeung/Skribblio-Helper |
| Hilfeseite URL | https://github.com/wlauyeung/Skribblio-Helper/issues |
| Unterstützte Sprachen | 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"
}
} | |