Skribbl.io Helper
Gives you potential answers on skribbl.io
Skribbl.io Helper क्या है?
Skribbl.io Helper Smartjacky द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Gives you potential answers on skribbl.io"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Skribbl.io Helper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
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 |
ईमेल | [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" } } |