DMSaver - Export Chat Messages

IGChatsExporter to export Instagram chat history, download DM (direct message) list, save as Excel and CSV file.

Co je DMSaver - Export Chat Messages?

DMSaver - Export Chat Messages je rozšíření Chrome vyvinuté 11 TYS, a jeho hlavní funkcí je „IGChatsExporter to export Instagram chat history, download DM (direct message) list, save as Excel and CSV file.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření DMSaver - Export Chat Messages

Stáhněte si soubory rozšíření DMSaver - Export Chat Messages ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        # FEATURES

✓ Export your Instagram chat messages.
✓ Save and download Instagram direct messages in CSV/EXCEL/JSON format.

# DATA PRIVACY

Your data is processed locally and never passes through our web server, ensuring the privacy of your exported information.

# SUPPORT

FAQ https://igchatsexporter.extensionsfox.com/
If you have any questions, please keep in touch via [email protected].                    

Základní Informace o Rozšíření

Název DMSaver - Export Chat Messages DMSaver - Export Chat Messages
ID jhfipkkpcgphdbjebljindagdajcgelp
Oficiální URL https://chromewebstore.google.com/detail/dmsaver-export-chat-messa/jhfipkkpcgphdbjebljindagdajcgelp
Popis IGChatsExporter to export Instagram chat history, download DM (direct message) list, save as Excel and CSV file.
Velikost souboru 681 KB
Počet instalací 148
Aktuální Verze 1.0.1
Poslední Aktualizace 2023-08-08
Datum Vydání 2023-03-26
Hodnocení 1.00/5 Celkem 2 Hodnocení
Vývojář 11 TYS
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://igchatsexporter.extensionsfox.com/
URL Stránky Zásad Ochrany Soukromí https://igcommentbot.extensionsfox.com/privacy
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_extName__",
    "description": "__MSG_extDescription__",
    "default_locale": "en",
    "version": "1.0.1",
    "homepage_url": "https:\/\/igchatsexporter.extensionsfox.com\/",
    "action": {
        "default_icon": ".\/assets\/icon-512.png",
        "default_popup": ".\/dist\/popup\/index.html"
    },
    "icons": {
        "16": ".\/assets\/icon-512.png",
        "48": ".\/assets\/icon-512.png",
        "128": ".\/assets\/icon-512.png"
    },
    "permissions": [
        "cookies",
        "storage"
    ],
    "host_permissions": [
        "*:\/\/*.instagram.com\/*"
    ],
    "background": {
        "service_worker": ".\/dist\/background\/index.mjs"
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/www.instagram.com\/*"
            ],
            "js": [
                ".\/dist\/contentScripts\/index.global.js"
            ],
            "css": [
                ".\/dist\/contentScripts\/style.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "dist\/contentScripts\/style.css",
                "assets\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    }
}