Add Search Engine from Mycroft Project

Add Search Engine from Mycroft Project

**It is not needed now**. Provide a workaround to add search engines from Mycroft Project after Firefox 65.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "60.0"
    }
  },
  "name": "__MSG_extensionName__",
  "version": "0.5resigned1",
  "description": "__MSG_extensionDescription__",
  "permissions": [],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://mycroftproject.com/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "default_locale": "en"
}