銘柄マーカー

銘柄マーカー

ページ内から銘柄を見つけ出し、株価チャート等を表示させます。株式トレーダー向け。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "銘柄マーカー",
  "version": "1.5.4",
  "manifest_version": 3,
  "description": "ページ内から銘柄を見つけ出し、株価チャート等を表示させます。株式トレーダー向け。",
  "action": {
    "default_icon": "brmarker_19.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "activeTab",
    "contextMenus",
    "storage",
    "scripting"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "common.js",
        "content_scripts.js"
      ],
      "css": [
        "brmarker.css"
      ]
    }
  ],
  "icons": {
    "16": "brmarker_19_white.png",
    "48": "brmarker_48.png",
    "128": "brmarker_128.png"
  }
}