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.”。
擴展截圖
下載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 |
ID | egfjccfngpialgcfdanenhidjhcbbonp |
官方網址 | 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" ] } |