price2alert

price2alert

adds function to see price history charts and a function to notification on Rakuten's site.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "description": "__MSG_extDescription__",
  "short_name": "price2alert",
  "version": "2.1.3",
  "manifest_version": 3,
  "default_locale": "ja",
  "permissions": [
    "storage"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "html/*",
        "img/icon/*",
        "img/logo/*",
        "js/*"
      ],
      "matches": [
        "<all_urls>"
      ],
      "use_dynamic_url": true
    }
  ],
  "icons": {
    "16": "img/logo/price2alert_16.png",
    "19": "img/logo/price2alert_19.png",
    "48": "img/logo/price2alert_48.png",
    "128": "img/logo/price2alert_128.png"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.rakuten.co.jp/*",
        "*://price2alert.com/*"
      ],
      "js": [
        "js/contents_script.js"
      ],
      "css": [
        "css/style.css"
      ],
      "run_at": "document_idle"
    }
  ],
  "options_page": "option/menu.html",
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self';",
    "sandbox": "sandbox allow-scripts allow-forms allow-popups allow-modals; script-src 'self' 'unsafe-inline' 'unsafe-eval'; child-src 'self';"
  }
}