アマゾン注文履歴フィルタ

アマゾン(amazon.co.jp)の注文履歴を月別表示したり、月別もしくは通年の領収書をまとめて表示・印刷したりできるようになります。

Wat is アマゾン注文履歴フィルタ?

アマゾン注文履歴フィルタ is een Chrome-extensie ontwikkeld door https://memo.furyutei.work, en de belangrijkste functie is "アマゾン(amazon.co.jp)の注文履歴を月別表示したり、月別もしくは通年の領収書をまとめて表示・印刷したりできるようになります。".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie アマゾン注文履歴フィルタ

Download アマゾン注文履歴フィルタ-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        確定申告の対象となるデジタルコンテンツが大量にあるような場合等に使うと便利、かも知れません。
※使用については自己責任でお願いします。何か不具合等が生じたとしても作者は一切関知いたしません。

Kindleを始めとしたデジタルコンテンツの領収書を得ようとすると、注文履歴等から1件ずつ選択して個別に印刷する必要があり、多数印刷しようとするとかなり手間がかかります。

そこで、選択した年月のデジタルコンテンツのみを抽出し、領収書をまとめて一つのタブに表示できるようにしてみました。
これにより、通年もしくは月別の領収書をまとめて印刷したり、PDFに保存したりできます。

【注意】
・アカウントによっては正常に動作しないことがあります(領収書がHTMLではなくPDFの場合など)
・Amazonビジネスアカウントは対象外です                    

Basisinformatie over de Extensie

Naam アマゾン注文履歴フィルタ アマゾン注文履歴フィルタ
ID jaikhcpoplnhinlglnkmihfdlbamhgig
Officiële URL https://chromewebstore.google.com/detail/%E3%82%A2%E3%83%9E%E3%82%BE%E3%83%B3%E6%B3%A8%E6%96%87%E5%B1%A5%E6%AD%B4%E3%83%95%E3%82%A3%E3%83%AB%E3%82%BF/jaikhcpoplnhinlglnkmihfdlbamhgig
Beschrijving アマゾン(amazon.co.jp)の注文履歴を月別表示したり、月別もしくは通年の領収書をまとめて表示・印刷したりできるようになります。
Bestandsgrootte 106 KB
Aantal Installaties 106,200
Huidige Versie 0.1.1.0
Laatst Bijgewerkt 2024-02-06
Publicatiedatum 2020-04-06
Beoordeling 3.37/5 Totaal 38 Beoordelingen
Ontwikkelaar https://memo.furyutei.work
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://memo.furyutei.work/entry/amzOrderHistoryFilter
Help Pagina-URL https://github.com/furyutei/amzOrderHistoryFilter/issues
Ondersteunde Talen ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_ext_title__",
    "short_name": "__MSG_ext_short_name__",
    "version": "0.1.1.0",
    "description": "__MSG_ext_description__",
    "author": "furyu",
    "default_locale": "ja",
    "icons": {
        "16": "img\/icon_16.png",
        "48": "img\/icon_48.png",
        "64": "img\/icon_64.png",
        "96": "img\/icon_96.png",
        "128": "img\/icon_128.png"
    },
    "background": {
        "service_worker": "background-wrapper.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.amazon.co.jp\/gp\/your-account\/order-history*",
                "https:\/\/www.amazon.co.jp\/gp\/legacy\/order-history*",
                "https:\/\/www.amazon.co.jp\/gp\/css\/order-history*",
                "https:\/\/www.amazon.co.jp\/your-orders\/orders*",
                "https:\/\/www.amazon.co.jp\/gp\/digital\/your-account\/order-summary.html*",
                "https:\/\/www.amazon.co.jp\/gp\/css\/summary\/print.html*",
                "https:\/\/www.amazon.co.jp\/ap\/signin*"
            ],
            "js": [
                "js\/jquery.min.js",
                "js\/concurrent_promise.js",
                "js\/init.js",
                "js\/amzOrderHistoryFilter.user.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "options_ui": {
        "page": "html\/options.html",
        "open_in_tab": true
    },
    "action": {
        "default_icon": "img\/icon_16-gray.png",
        "default_title": "__MSG_ext_title__",
        "default_popup": "html\/options.html"
    },
    "permissions": [
        "storage"
    ]
}