Lilach Solver
Solves any question on lilach theory website
Lilach Solverคืออะไร?
Lilach Solver เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Anonymus และคุณลักษณะหลักของมันคือ "Solves any question on lilach theory website"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Lilach Solver
ดาวน์โหลดไฟล์ส่วนขยาย 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)" } } } |