Skribbl Assistant
Fetches the Skribbl.io wordlist and displays clickable hints based on the current word's pattern.
Skribbl Assistantとは何ですか?
Skribbl Assistantはhttps://sspathare97.comによって開発されたChromeの拡張機能で、その主な機能は「Fetches the Skribbl.io wordlist and displays clickable hints based on the current word's pattern.」です。
拡張機能のスクリーンショット
Skribbl Assistant拡張機能のCRXファイルをダウンロード
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 |
| Eメール | [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"
}
} | |