1
0
Fork 0
firefox/toolkit/components/ml/docs/extensions-api-example/manifest.json
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

18 lines
420 B
JSON

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