WA Quick Recruit by Job Hai lets you send personalized bulk messages via WhatsApp™ Web, making hiring faster, smarter and efficient.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "WA Quick Recruit by Job Hai",
"version": "1.2",
"description": "WA Quick Recruit by Job Hai lets you send personalized bulk messages via WhatsApp™ Web, making hiring faster, smarter and efficient.",
"permissions": [
"tabs",
"activeTab",
"scripting",
"windows",
"storage"
],
"host_permissions": [
"https://web.whatsapp.com/*",
"https://www.jobhai.com/*"
],
"icons": {
"48": "icon.png"
},
"background": {
"service_worker": "background.js",
"log": true,
"type": "module"
},
"action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"externally_connectable": {
"matches": [
"https://web.whatsapp.com/*",
"https://www.jobhai.com/*"
]
},
"content_scripts": [
{
"matches": [
"https://web.whatsapp.com/*"
],
"all_frames": false,
"js": [
"content.js"
],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
{
"resources": [
"assets/*",
"scripts/*"
],
"matches": [
"https://web.whatsapp.com/*",
"https://www.jobhai.com/*"
]
}
]
}