zippy/inch/manifest.json

28 wiersze
681 B
JSON
Executable File

{
"manifest_version": 3,
"version": "0.3.1",
"name": "AI Noise-cancelling headphones",
"author": "jacob@thinkst.com",
"description": "An extension to filter out AI-generated noise from your browsing experience",
"permissions": [
"contextMenus",
"storage"
],
"icons": {
"16": "nch_small.png",
"48": "nch_med.png",
"128": "nch_large.png"
},
"content_scripts": [
{
"js": ["scripts/nch.js"],
"matches": [
"*://*/*"
]
}
],
"background": {
"service_worker": "scripts/nch-worker.js"
}
}