Lilach Solver
Solves any question on lilach theory website
What is Lilach Solver?
Lilach Solver is a Chrome extension developed by Anonymus, and its main feature is "Solves any question on lilach theory website".
Extension Screenshots
Download Lilach Solver Extension CRX File
Download Lilach Solver extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Alt+Q = Mark Correct Anser (removes the dot at the end of the correct anser (all other ansers will have dots at thier end)) Alt+W = Toggle Extension Manual Mode (NOT RECOMMENDED, Use if regular mode does'nt work) Alt+R = Toggle Disable All Extension Functionality (in case the teacher comes) Click On Extension Icon Will Solve Test Completely Automaticly (use for homework, it is very suspicious in a test)
Extension Basic Information
Name | Lilach Solver |
ID | cpkcicifjkeadllpdhfbaolgbeleclii |
Official URL | https://chromewebstore.google.com/detail/lilach-solver/cpkcicifjkeadllpdhfbaolgbeleclii |
Description | Solves any question on lilach theory website |
File Size | 93.83 KB |
Installation Count | 137 |
Current Version | 2.5 |
Last Updated | 2019-05-27 |
Publish Date | 2019-05-27 |
Rating | 5.00/5 Total 1 Ratings |
Developer | Anonymus |
Payment Type | free |
Supported Languages | iw |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Lilach Solver", "short_name": "Lilach Solver", "description": "Solves any question on lilach theory website", "version": "2.5", "author": "YSB", "browser_action": { "default_title": "Lilach Solver", "default_icon": "Icon.png" }, "content_scripts": [ { "matches": [ "*:\/\/www.testli.co.il\/*" ], "js": [ "contentScript.js" ] } ], "background": { "scripts": [ "backGround.js" ], "persistent": false }, "permissions": [ "activeTab" ], "commands": { "ans": { "suggested_key": { "default": "Alt+Q" }, "description": "Autocomplete Test" }, "manual": { "suggested_key": { "default": "Alt+W" }, "description": "Switch To Manual Mode (use array of questions and ansers)" }, "off": { "suggested_key": { "default": "Alt+R" }, "description": "Disable\\Enable All Functionality (if teacher comes)" } } } |