toolkit/components/ml/docs/extensions-api-example/manifest.json
author Marco Bonardo <mbonardo@mozilla.com>
Mon, 16 Jun 2025 15:07:00 +0000
changeset 792229 87e010ebac62c5bed9a41c64e63df5be347f65e6
parent 778701 13f1f085309092e6225ae3ddf6cd1bb25f3cfd4c
permissions -rw-r--r--
Bug 1971120 - Add semantic history chunks calculation telemetry. r=jteow,places-reviewers,Standard8 Differential Revision: https://phabricator.services.mozilla.com/D253217

{
  "manifest_version": 2,
  "name": "test-trial-ml",
  "version": "1.0.0",
  "description": "A demo extension that uses the (trial) ML API.",
  "optional_permissions": ["trialML"],
  "permissions": ["<all_urls>", "menus", "scripting", "storage"],
  "icons": {
    "64": "icon.png"
  },
  "background": {
    "scripts": ["background.js"],
    "persistent": false
  },
  "options_ui": {
    "page": "settings.html"
  }
}