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
官方網址 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"
    }
}