Amazon jp Open Orders restorer | 「未発送の注文」を復活

Amazon jp Open Orders restorer | 「未発送の注文」を復活

Google Chrome拡張機能。Amazon.co.jpの「注文履歴」へ「未発送の注文」タブを復活させる。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Amazon jp Open Orders restorer | 「未発送の注文」を復活",
  "version": "1.0.0",
  "description": "Google Chrome拡張機能。Amazon.co.jpの「注文履歴」へ「未発送の注文」タブを復活させる。",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "author": "Y-dash",
  "content_scripts": [
    {
      "matches": [
        "*://www.amazon.co.jp/*/order-history*"
      ],
      "js": [
        "scripts/content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "host_permissions": [
    "*://www.amazon.co.jp/*/order-history*"
  ]
}