Skribbl.io Helper
Gives you potential answers on skribbl.io
Skribbl.io Helper là gì?
Skribbl.io Helper là một tiện ích mở rộng Chrome được phát triển bởi Smartjacky, và tính năng chính của nó là "Gives you potential answers on skribbl.io".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Skribbl.io Helper
Tải xuống các tệp mở rộng Skribbl.io Helper dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Skribbl.io Helper |
ID | pnfncicapicbmndoelcfebipoibdackb |
URL Chính Thức | https://chromewebstore.google.com/detail/skribblio-helper/pnfncicapicbmndoelcfebipoibdackb |
Mô tả | Gives you potential answers on skribbl.io |
Kích Thước Tệp | 14.77 KB |
Số Lần Cài Đặt | 12,638 |
Phiên Bản Hiện Tại | 1.6.2 |
Cập Nhật Lần Cuối | 2023-04-21 |
Ngày Phát Hành | 2022-04-05 |
Đánh Giá | 3.71/5 Tổng số 21 Đánh Giá |
Nhà Phát Triển | Smartjacky |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/wlauyeung/Skribblio-Helper |
URL Trang Trợ Giúp | https://github.com/wlauyeung/Skribblio-Helper/issues |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |