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」です。

拡張機能のスクリーンショット

screenshot
screenshot

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                    

拡張機能の基本情報

名前 Skribbl.io Helper Skribbl.io Helper
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
Eメール [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"
    }
}