You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
467 B
JSON

{
"name": "Sandpoints Local Messaging Host",
"version": "1.0",
"manifest_version": 3,
"description": "Chrome extension to bridge messaging in between files open via file:// to talk to system.",
"action": {
"default_icon": "icon.png"
},
"background": {
"service_worker": "main.js"
},
"content_scripts": [
{
"matches": ["file://*"],
"all_frames": true,
"js": ["c.js"]
}
],
"permissions": [
"nativeMessaging"
]
}