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

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

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

アマゾン注文履歴フィルタ is a Chrome extension developed by https://memo.furyutei.work, and its main feature is "アマゾン(amazon.co.jp)の注文履歴を月別表示したり、月別もしくは通年の領収書をまとめて表示・印刷したりできるようになります。".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download アマゾン注文履歴フィルタ Extension CRX File

Download アマゾン注文履歴フィルタ 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

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

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

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

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

Extension Basic Information

Name アマゾン注文履歴フィルタ アマゾン注文履歴フィルタ
ID jaikhcpoplnhinlglnkmihfdlbamhgig
Official 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
Description アマゾン(amazon.co.jp)の注文履歴を月別表示したり、月別もしくは通年の領収書をまとめて表示・印刷したりできるようになります。
File Size 106 KB
Installation Count 106,200
Current Version 0.1.1.0
Last Updated 2024-02-06
Publish Date 2020-04-06
Rating 3.37/5 Total 38 Ratings
Developer https://memo.furyutei.work
Email [email protected]
Payment Type free
Extension Website https://memo.furyutei.work/entry/amzOrderHistoryFilter
Help Page URL https://github.com/furyutei/amzOrderHistoryFilter/issues
Supported Languages 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"
    ]
}