Lilach Solver

Solves any question on lilach theory website

Lilach Solver क्या है?

Lilach Solver Anonymus द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Solves any question on lilach theory website"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Lilach Solver एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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)                    

एक्सटेंशन की मूल जानकारी

नाम Lilach Solver Lilach Solver
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)"
        }
    }
}