Files
whatsthat-perso/manifest.json
2025-10-14 13:13:17 +02:00

28 lines
581 B
JSON

{
"manifest_version": 3,
"name": "What's That!?",
"version": "2.6",
"description": "Analyzes WhatsApp Web reactions to reveal who reacts to whose messages the most",
"permissions": [
"activeTab",
"storage"
],
"host_permissions": [
"https://web.whatsapp.com/*"
],
"content_scripts": [
{
"matches": ["*://web.whatsapp.com/*"],
"js": ["content.js"],
"run_at": "document_idle",
"all_frames": false
}
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_title": "What's That!?"
}
}