Lilach Solver

Solves any question on lilach theory website

O que é Lilach Solver?

Lilach Solver é uma extensão do Chrome desenvolvida por Anonymus, e sua principal característica é "Solves any question on lilach theory website".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Lilach Solver

Baixe arquivos de extensão Lilach Solver no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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)                    

Informações Básicas da Extensão

Nome Lilach Solver Lilach Solver
ID cpkcicifjkeadllpdhfbaolgbeleclii
URL Oficial https://chromewebstore.google.com/detail/lilach-solver/cpkcicifjkeadllpdhfbaolgbeleclii
Descrição Solves any question on lilach theory website
Tamanho do Arquivo 93.83 KB
Contagem de Instalações 137
Versão Atual 2.5
Última Atualização 2019-05-27
Data de Publicação 2019-05-27
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor Anonymus
Tipo de Pagamento free
Idiomas Suportados 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)"
        }
    }
}