Comments Exporter

This extension will help you quickly export instagram comments to Excel xlsx or csv files.

Co to jest Comments Exporter?

Comments Exporter to rozszerzenie Chrome opracowane przez EchoWebBot Team, a jego główną funkcją jest „This extension will help you quickly export instagram comments to Excel xlsx or csv files.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Comments Exporter

Pobierz pliki rozszerzeń Comments Exporter w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        🎉 The best Instagram tool is designed for those who want to export comments from Instagram to excel xlsx or csv for giveaways. after installing, you can download comments in bulk with one click and export to excel xlsx or csv files.

🆕 New Update
✓ Add support for exporting xlsx files in excel.
✓ Upgrade extension manifest V3, more secure and stable.
✓ Fix some issues.

⚙️ Get started
1. Enter a Instagram post URL
2. Click the export button

Another way, there will be an export button on all instagram posts module, click this button to start exporting.

💡 Features
✓ Export data to XLSX files.
✓ Export data to CSV files.
✓ One Click Export.
✓ Exported data including User Id, User Name, Avatar Url, Profile Url, Comment Id, Comment Text, Publish Date.

🔒 Data Privacy
All data is processed in your local computer, it never passes through our web server and no one knows what you have saved.

👋 Contact
If you have any issues, feel free to contact [email protected]                    

Podstawowe informacje o rozszerzeniu

Nazwa Comments Exporter Comments Exporter
ID ldhjpljmgnggmkpcgaicmocfoefbcojl
Oficjalny URL https://chromewebstore.google.com/detail/comments-exporter/ldhjpljmgnggmkpcgaicmocfoefbcojl
Opis This extension will help you quickly export instagram comments to Excel xlsx or csv files.
Rozmiar pliku 667 KB
Liczba instalacji 1,514
Aktualna Wersja 2.3.1
Ostatnia Aktualizacja 2023-08-01
Data Publikacji 2021-09-29
Ocena 5.00/5 Łącznie 3 Oceny
Deweloper EchoWebBot Team
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://commentexporter.echobot.dev
Adres URL Strony Polityki Prywatności https://echobot.dev/privacy-policy.html
Obsługiwane Języki id,ms,de,en,en-GB,en-US,fil,fr,sw,nl,no,vi,tr,ca,da,et,es,es-419,hr,it,lv,lt,hu,pl,pt-BR,pt-PT,ro,sk,sl,fi,sv,cs,el,sr,bg,ru,uk,iw,fa,mr,hi,bn,gu,ta,te,kn-IN,ml,th,am-ET,ar,zh-CN,zh-TW,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_appName__",
    "homepage_url": "https:\/\/igcommentsave.echobot.dev",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "permissions": [
        "cookies",
        "storage",
        "identity"
    ],
    "host_permissions": [
        "*:\/\/*.instagram.com\/*",
        "*:\/\/*.echobot.dev\/*"
    ],
    "oauth2": {
        "client_id": "138610376179-7a6g3to17rm3fu1rb9t1rbffpvvaip1s.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/www.googleapis.com\/auth\/userinfo.email"
        ]
    },
    "icons": {
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "__MSG_appName__",
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icons\/16.png",
            "32": "icons\/32.png",
            "48": "icons\/48.png",
            "128": "icons\/128.png"
        }
    },
    "content_scripts": [
        {
            "js": [
                "libs\/jquery-3.6.0.min.js",
                "content-script.js"
            ],
            "matches": [
                "*:\/\/*.instagram.com\/*"
            ],
            "run_at": "document_end",
            "all_frames": false
        },
        {
            "js": [
                "auth.js"
            ],
            "matches": [
                "*:\/\/*.echobot.dev\/auth\/success\/igcommentexporter*"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "injected.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "version": "2.3.1"
}