Lilach Solver

Solves any question on lilach theory website

Qu'est-ce que Lilach Solver ?

Lilach Solver est une extension Chrome développée par Anonymus, et sa fonction principale est "Solves any question on lilach theory website".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Lilach Solver

Téléchargez les fichiers d'extension Lilach Solver au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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)                    

Informations de Base sur l'Extension

Nom Lilach Solver Lilach Solver
ID cpkcicifjkeadllpdhfbaolgbeleclii
URL Officiel https://chromewebstore.google.com/detail/lilach-solver/cpkcicifjkeadllpdhfbaolgbeleclii
Description Solves any question on lilach theory website
Taille du Fichier 93.83 KB
Nombre d'Installations 137
Version Actuelle 2.5
Dernière Mise à Jour 2019-05-27
Date de Publication 2019-05-27
Évaluation 5.00/5 Total 1 Évaluations
Développeur Anonymus
Type de Paiement free
Langues Prises en Charge 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)"
        }
    }
}