ちゅるAmazon版

ちゅるAmazon版

Amazonの各ページにKeepaグラフやECサイトへのリンクボタンなどを表示する拡張機能です。

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版",
  "description": "Amazonの各ページにKeepaグラフやECサイトへのリンクボタンなどを表示する拡張機能です。",
  "version": "1.6.9",
  "icons": {
    "16": "images/icon_32.png",
    "32": "images/icon_32.png",
    "48": "images/icon_48.png",
    "128": "images/icon_128.png"
  },
  "options_ui": {
    "page": "html/options.html",
    "open_in_tab": false
  },
  "action": {
    "default_icon": "images/icon_32.png",
    "default_popup": "html/popup.html",
    "default_title": "ちゅるAmazon版"
  },
  "content_scripts": [
    {
      "matches": [
        "https://cieloblu-jp.com/sp-api/*",
        "https://www.amazon.co.jp/*",
        "https://sellercentral.amazon.co.jp/*",
        "https://sellercentral-japan.amazon.com/*"
      ],
      "css": [
        "css/content.css"
      ],
      "js": [
        "js/content.js"
      ]
    }
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "permissions": [
    "storage"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/*.gif"
      ],
      "matches": [
        "https://www.amazon.co.jp/*",
        "https://sellercentral.amazon.co.jp/*",
        "https://sellercentral-japan.amazon.com/*"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://cieloblu-jp.com/sp-api/*"
    ]
  }
}