initial script

This commit is contained in:
Matias Carpintini
2025-03-20 16:16:04 -03:00
commit 2edb9a45d3
5 changed files with 156 additions and 0 deletions

21
manifest.json Normal file
View File

@@ -0,0 +1,21 @@
{
"name": "WhatsApp Heart Favorites",
"description": "Automatically star messages when you react with a heart emoji",
"version": "1.0.0",
"manifest_version": 3,
"permissions": ["activeTab", "scripting"],
"host_permissions": ["https://web.whatsapp.com/*"],
"content_scripts": [
{
"matches": ["https://web.whatsapp.com/*"],
"run_at": "document_end",
"js": ["content-script.js"]
}
],
"web_accessible_resources": [
{
"resources": ["injected.js"],
"matches": ["https://web.whatsapp.com/*"]
}
]
}