Traitu Whatsapp Chat Downloader

Download your whatsapp chats as .txt files to use them in Traitu's Whatsapp Analyzer Tool (https://traitu.com/whatsapp.html)

What is Traitu Whatsapp Chat Downloader?

Traitu Whatsapp Chat Downloader is a Chrome extension developed by TRAITU (Francesco Sinclair), and its main feature is "Download your whatsapp chats as .txt files to use them in Traitu's Whatsapp Analyzer Tool (https://traitu.com/whatsapp.html)".

Extension Screenshots

screenshot

Download Traitu Whatsapp Chat Downloader Extension CRX File

Download Traitu Whatsapp Chat Downloader extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Download your Whatsapp chats with just a few clicks.

The resulting files are text files (.txt format) and do not include media (pictures, videos, stickers, etc).

This extension lets you chose the history length of the chat you want to download (e.g. download only messages from the last 60 days) and gives you several options to decide what chats to download:

    - Download all chats.
    - Download only X number of chats (e.g. only the 20 most recent chats).
    - Download only chats that have been active during the last X days.
    - Skip or include group chats.
    - Download only the chats you select.

This extension was developed by Francesco Sinclair (Hi there! Nice to meet you) as a complement to TRAITU’s WhatsappTool, but feel free to use it for whatever you want.

WhatsappTool (https://traitu.com/whatsapp.html) is a free tool that helps you become a better listener. To use this extension for WhatsappTool, keep the default option values. If you want it to go faster, you can set “Conversation length” to “7 days”, but then you won’t get the little charts, only the last-week metrics.

Hope you enjoy it.                    

Extension Basic Information

Name Traitu Whatsapp Chat Downloader Traitu Whatsapp Chat Downloader
ID aomhfkfbjbehmnkgkddfndjliojddipf
Official URL https://chrome.google.com/webstore/detail/traitu-whatsapp-chat-down/aomhfkfbjbehmnkgkddfndjliojddipf
Description Download your whatsapp chats as .txt files to use them in Traitu's Whatsapp Analyzer Tool (https://traitu.com/whatsapp.html)
File Size 29.02 KB
Installation Count 426
Current Version 0.2
Last Updated 2020-09-03
Publish Date 2020-08-17
Developer TRAITU (Francesco Sinclair)
Email [email protected]
Payment Type free
Extension Website https://traitu.com
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Traitu Whatsapp Chat Downloader",
    "version": "0.2",
    "description": "Download your whatsapp chats as .txt files to use them in Traitu's Whatsapp Analyzer Tool (https:\/\/traitu.com\/whatsapp.html)",
    "icons": {
        "16": "traitu-whatsapp-icon-16.png",
        "48": "traitu-whatsapp-icon-48.png",
        "128": "traitu-whatsapp-icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/web.whatsapp.com\/*",
                "http:\/\/web.whatsapp.com\/*"
            ],
            "js": [
                "content.js",
                "popup.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "activeTab"
    ],
    "web_accessible_resources": [
        "whatsapp.jpg"
    ]
}