Lilach Solver
Solves any question on lilach theory website
Cos'è Lilach Solver?
Lilach Solver è un'estensione di Chrome sviluppata da Anonymus, e la sua funzione principale è "Solves any question on lilach theory website".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Lilach Solver
Scarica i file di estensione Lilach Solver in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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) Informazioni di Base sull'Estensione
| Nome | |
| ID | cpkcicifjkeadllpdhfbaolgbeleclii |
| URL Ufficiale | https://chromewebstore.google.com/detail/lilach-solver/cpkcicifjkeadllpdhfbaolgbeleclii |
| Descrizione | Solves any question on lilach theory website |
| Dimensione del File | 93.83 KB |
| Conteggio Installazioni | 137 |
| Versione Corrente | 2.5 |
| Ultimo Aggiornamento | 2019-05-27 |
| Data di Pubblicazione | 2019-05-27 |
| Valutazione | 5.00/5 Totale 1 Valutazioni |
| Sviluppatore | Anonymus |
| Tipo di Pagamento | free |
| Lingue Supportate | 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)"
}
}
} | |