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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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)" } } } |