Lilach Solver

Lilach Solver

Solves any question on lilach theory website

Additional files are visible only to premium users

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)"
    }
  }
}