Gold Index

Gold Index

Display gold, silver market information on the toolbar. The icon badge displays the price of the specified product in real time and…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_AppName__",
  "version": "3.2.1",
  "author": "Alex Hua",
  "manifest_version": 3,
  "minimum_chrome_version": "100.0.0",
  "default_locale": "zh_CN",
  "description": "__MSG_AppDesc__",
  "icons": {
    "32": "image/32.png",
    "48": "image/48.png",
    "64": "image/64.png",
    "128": "image/128.png"
  },
  "action": {
    "default_icon": {
      "32": "image/32.png"
    },
    "default_popup": "popup.html",
    "default_title": "Gold Index"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "idle",
    "storage",
    "contextMenus",
    "notifications"
  ],
  "host_permissions": [
    "*://m.icbc.com.cn/*",
    "*://papi.icbc.com.cn/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://m.icbc.com.cn/mpage/precious-metal/detail*"
      ],
      "all_frames": true,
      "js": [
        "js/detailPage.js"
      ],
      "run_at": "document_idle"
    }
  ]
}