Lilach Solver
Solves any question on lilach theory website
Wat is Lilach Solver?
Lilach Solver is een Chrome-extensie ontwikkeld door Anonymus, en de belangrijkste functie is "Solves any question on lilach theory website".
Extensie Screenshots
Download het CRX-bestand van de extensie Lilach Solver
Download Lilach Solver-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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) Basisinformatie over de Extensie
| Naam | |
| ID | cpkcicifjkeadllpdhfbaolgbeleclii |
| Officiële URL | https://chromewebstore.google.com/detail/lilach-solver/cpkcicifjkeadllpdhfbaolgbeleclii |
| Beschrijving | Solves any question on lilach theory website |
| Bestandsgrootte | 93.83 KB |
| Aantal Installaties | 137 |
| Huidige Versie | 2.5 |
| Laatst Bijgewerkt | 2019-05-27 |
| Publicatiedatum | 2019-05-27 |
| Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
| Ontwikkelaar | Anonymus |
| Betalingswijze | free |
| Ondersteunde Talen | 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)"
}
}
} | |