NEWTYPE DELTA TRACER

NEWTYPE DELTA TRACER

NEWTYPEデルタトレーサーは、アマゾン商品ページに「価格、出品者数、ランキング変動データー」を表示する拡張機能です。アマゾンの商品ページから過去のデータ閲覧する事ができるのでリサーチ効率化を図る事が可能です。…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "NEWTYPE DELTA TRACER",
  "version": "1.0.9.7",
  "action": {
    "default_popup": "popup.html",
    "default_title": "NEWTYPE DELTA TRACER"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "js": [
        "jquery.min.js",
        "content_script.js",
        "toastr.min.js"
      ],
      "matches": [
        "http://www.amazon.co.jp/*",
        "https://biccamera.rakuten.co.jp/*",
        "https://www.amazon.co.jp/*",
        "https://item.rakuten.co.jp/*",
        "https://books.rakuten.co.jp/*",
        "https://paypaymall.yahoo.co.jp/*",
        "https://store.shopping.yahoo.co.jp/*"
      ]
    }
  ],
  "icons": {
    "16": "icon.png",
    "128": "icon.png"
  },
  "permissions": [
    "storage",
    "activeTab"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "update_url": "https://clients2.google.com/service/update2/crx",
  "web_accessible_resources": [
    {
      "resources": [
        "*.png",
        "*.html",
        "*.css",
        "*.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}