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) 拡張機能の基本情報
| 名前 | |
| 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)"
}
}
} | |