Lilach Solver
Solves any question on lilach theory website
什么是Lilach Solver?
Lilach Solver是由Anonymus开发的Chrome扩展程序,该扩展的主要功能是“Solves any question on lilach theory website”。
扩展截图
下载Lilach Solver扩展crx文件
下载Lilach Solver扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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)
扩展基本信息
名称 | Lilach Solver |
ID | cpkcicifjkeadllpdhfbaolgbeleclii |
官方URL | https://chromewebstore.google.com/detail/lilach-solver/cpkcicifjkeadllpdhfbaolgbeleclii |
简介 | Solves any question on lilach theory website |
文件大小 | 93.83 KB |
安装次数 | 137 |
当前版本 | 2.5 |
更新时间 | 2019-05-27 |
上架时间 | 2019-05-27 |
评分 | 5.00/5 共1次评分 |
开发者 | Anonymus |
付费类型 | free |
支持的语言 | 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)" } } } |