評価額 隠すくん

評価額 隠すくん

証券会社のウェブサイトの評価額を隠します。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "評価額 隠すくん",
  "version": "1.0",
  "description": "証券会社のウェブサイトの評価額を隠します。",
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://invest.wealthnavi.com/service"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "action": {
    "default_title": "評価額 隠すくん",
    "default_popup": "popup.html"
  }
}