Inspect and view changes in Chat History Tracker Keyword 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
{
"manifest_version": 2,
"name": "Chat History Tracker and Keyword Analyzer",
"version": "1.0",
"description": "Track chat history from multiple platforms and analyze keywords.",
"permissions": [
"webRequest",
"storage",
"notifications",
"activeTab",
"https://*.slack.com/*",
"https://*.whatsapp.com/*",
"https://*.messenger.com/*"
],
"background": {
"scripts": [
"background.js"
],
"persistent": true
},
"browser_action": {
"default_popup": "popup.html",
"default_icon": {
"32": "icons/logo_32.png",
"64": "icons/logo_64.png",
"128": "icons/logo_128.png"
}
},
"icons": {
"32": "icons/logo_32.png",
"64": "icons/logo_64.png",
"128": "icons/logo_128.png"
},
"browser_specific_settings": {
"gecko": {
"id": "{6da7d4c1-5c48-403f-8a2a-16c18a078231}"
}
}
}