Skribbl.io Helper
Gives you potential answers on skribbl.io
什么是Skribbl.io Helper?
Skribbl.io Helper是由Smartjacky开发的Chrome扩展程序,该扩展的主要功能是“Gives you potential answers on skribbl.io”。
扩展截图
下载Skribbl.io Helper扩展crx文件
下载Skribbl.io Helper扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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 扩展基本信息
| 名称 | |
| ID | pnfncicapicbmndoelcfebipoibdackb |
| 官方URL | https://chromewebstore.google.com/detail/skribblio-helper/pnfncicapicbmndoelcfebipoibdackb |
| 简介 | Gives you potential answers on skribbl.io |
| 文件大小 | 14.77 KB |
| 安装次数 | 12,638 |
| 当前版本 | 1.6.2 |
| 更新时间 | 2023-04-21 |
| 上架时间 | 2022-04-05 |
| 评分 | 3.71/5 共21次评分 |
| 开发者 | Smartjacky |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/wlauyeung/Skribblio-Helper |
| 帮助页面URL | https://github.com/wlauyeung/Skribblio-Helper/issues |
| 支持的语言 | 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"
}
} | |