Inspect and view changes in Schedule WhatsApp Message source codes across current and past versions
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": "Schedule WhatsApp Message",
"version": "1.0.1",
"icons": {
"16": "img/icon.png",
"32": "img/icon.png",
"48": "img/icon.png",
"128": "img/icon.png"
},
"permissions": [
"tabs",
"activeTab",
"storage",
"unlimitedStorage",
"alarms"
],
"background": {
"service_worker": "js/background.js"
},
"commands": {
"_execute_action": {
"suggested_key": {
"windows": "Ctrl+Shift+S",
"mac": "Command+Shift+S"
}
}
},
"action": {
"default_icon": "img/icon.png",
"default_popup": "html/popup.html",
"default_title": "Schedule WhatsApp Message"
},
"content_scripts": [
{
"matches": [
"*://web.whatsapp.com/*"
],
"js": [
"js/contentScript.js"
],
"css": [
"css/custom.css"
],
"run_at": "document_start"
}
],
"host_permissions": [
"*://web.whatsapp.com/*"
]
}