archematics/etc/manifest.json
Glen Whitney e56090cd7e feat: Generate Firefox plugin
So far, plugin only handles VRML. But it loads as a temporary plugin in
   Firefox OK, and it generates viewers as necessary, including overlaying
   existing images that are links to VRML files.
2023-09-28 13:25:25 -07:00

24 lines
515 B
JSON

{
"manifest_version": 3,
"name": "archematics",
"version": "0.1",
"description": "unearths mathematical treasures lost in the web.",
"content_scripts": [
{
"matches": ["*://*/*"],
"js": ["giveAwrl.js"]
}
],
"web_accessible_resources": [{
"matches": ["<all_urls>"],
"resources": [
"deps/x_ite/x_ite.mjs",
"deps/x_ite/x_ite.css",
"deps/x_ite/assets/components/Scripting.js",
"deps/x_ite/assets/components/Text.js"
]
}]
}