skribbl.io Bot

Narrows down the possible words for skribble.io.

什么是skribbl.io Bot?

skribbl.io Bot是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“Narrows down the possible words for skribble.io.”。

扩展截图

screenshot

下载skribbl.io Bot扩展crx文件

下载skribbl.io Bot扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        This extension is intended to be used for the website, skribbl.io. Using a word bank with all of the default possible words for the game, this extension will help you narrow down which words are the solution to each round.                    

扩展基本信息

名称 skribbl.io Bot skribbl.io Bot
ID egfjccfngpialgcfdanenhidjhcbbonp
官方URL https://chromewebstore.google.com/detail/skribblio-bot/egfjccfngpialgcfdanenhidjhcbbonp
简介 Narrows down the possible words for skribble.io.
文件大小 29.06 KB
安装次数 70,116
当前版本 1.0
更新时间 2020-05-17
上架时间 2020-05-16
评分 3.63/5 共108次评分
开发者 Unknown
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "skribbl.io Bot",
    "version": "1.0",
    "description": "Narrows down the possible words for skribble.io.",
    "icons": {
        "128": "skribbl-icon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/skribbl.io\/*"
            ],
            "js": [
                "bot.js"
            ]
        }
    ],
    "permissions": [
        "declarativeContent"
    ]
}