メルカリ売上一覧CSVダウンロード

メルカリの売却済みの商品リストをCSVでダウンロードします。

Cos'è メルカリ売上一覧CSVダウンロード?

メルカリ売上一覧CSVダウンロード è un'estensione di Chrome sviluppata da 音水, e la sua funzione principale è "メルカリの売却済みの商品リストをCSVでダウンロードします。".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione メルカリ売上一覧CSVダウンロード

Scarica i file di estensione メルカリ売上一覧CSVダウンロード in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        メルカリ売上一覧をCSVでダウンロードします。
大量に販売し、確定申告などで一覧を取得する必要がある場合などの補助としてお使いいただけます。

使い方:
メルカリ→マイページ→出品した商品 - 売却済みにアクセスし、
右クリックメニューにある「メルカリ売却済み一覧CSVダウンロード」をクリックすることで
そのページの送品一覧がCSVでダウンロードできます。
ダウンロードはページごとに行っていただく必要があります。                    

Informazioni di Base sull'Estensione

Nome メルカリ売上一覧CSVダウンロード メルカリ売上一覧CSVダウンロード
ID ojhpfkcljghomokncmggohbbieahfgig
URL Ufficiale https://chromewebstore.google.com/detail/%E3%83%A1%E3%83%AB%E3%82%AB%E3%83%AA%E5%A3%B2%E4%B8%8A%E4%B8%80%E8%A6%A7csv%E3%83%80%E3%82%A6%E3%83%B3%E3%83%AD%E3%83%BC%E3%83%89/ojhpfkcljghomokncmggohbbieahfgig
Descrizione メルカリの売却済みの商品リストをCSVでダウンロードします。
Dimensione del File 47.51 KB
Conteggio Installazioni 4,883
Versione Corrente 0.0.1
Ultimo Aggiornamento 2021-07-23
Data di Pubblicazione 2021-07-22
Valutazione 3.73/5 Totale 15 Valutazioni
Sviluppatore 音水
Email [email protected]
Tipo di Pagamento free
Lingue Supportate ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "\u30e1\u30eb\u30ab\u30ea\u58f2\u4e0a\u4e00\u89a7CSV\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9",
    "short_name": "\u30e1\u30eb\u30ab\u30ea\u58f2\u4e0a\u4e00\u89a7CSV",
    "version": "0.0.1",
    "description": "\u30e1\u30eb\u30ab\u30ea\u306e\u58f2\u5374\u6e08\u307f\u306e\u5546\u54c1\u30ea\u30b9\u30c8\u3092CSV\u3067\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3057\u307e\u3059\u3002",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.mercari.com\/*"
            ],
            "js": [
                "jquery-3.5.1.min.js",
                "content-script.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html"
    },
    "background": {
        "scripts": [
            "background-script.js"
        ]
    },
    "permissions": [
        "contextMenus",
        "https:\/\/www.mercari.com\/*"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}