Skribbl.io Helper
Gives you potential answers on skribbl.io
Wat is Skribbl.io Helper?
Skribbl.io Helper is een Chrome-extensie ontwikkeld door Smartjacky, en de belangrijkste functie is "Gives you potential answers on skribbl.io".
Extensie Screenshots
Download het CRX-bestand van de extensie Skribbl.io Helper
Download Skribbl.io Helper-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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 Basisinformatie over de Extensie
| Naam | |
| ID | pnfncicapicbmndoelcfebipoibdackb |
| Officiële URL | https://chromewebstore.google.com/detail/skribblio-helper/pnfncicapicbmndoelcfebipoibdackb |
| Beschrijving | Gives you potential answers on skribbl.io |
| Bestandsgrootte | 14.77 KB |
| Aantal Installaties | 12,638 |
| Huidige Versie | 1.6.2 |
| Laatst Bijgewerkt | 2023-04-21 |
| Publicatiedatum | 2022-04-05 |
| Beoordeling | 3.71/5 Totaal 21 Beoordelingen |
| Ontwikkelaar | Smartjacky |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | https://github.com/wlauyeung/Skribblio-Helper |
| Help Pagina-URL | https://github.com/wlauyeung/Skribblio-Helper/issues |
| Ondersteunde Talen | 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"
}
} | |