create-mellowtel-extension
Version:
Create a new Mellowtel browser extension with one command
35 lines (34 loc) • 847 B
JSON
{
"manifest_version": 3,
"name": "Mellowtel Extension",
"version": "1.0.0",
"description": "Mellowtel browser extension for website analytics and user behavior tracking",
"icons": {
"48": "icons/mellowtel_logo.jpeg"
},
"permissions": [
"storage",
"declarativeNetRequest"
],
"host_permissions": [
"<all_urls>"
],
"action": {
"default_title": "Mellowtel Extension",
"default_popup": "html/popup.html",
"default_icon": {
"48": "icons/mellowtel_logo.jpeg"
}
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content.js"],
"run_at": "document_start",
"all_frames": true
}
]
}