株リンク

株リンク

証券会社のHPから外部の株式情報ページへ遷移するリンクを作ります

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_app_title__",
  "version": "1.9.21",
  "default_locale": "ja",
  "description": "__MSG_app_description__",
  "icons": {
    "16": "/images/kabu16.png",
    "24": "/images/kabu24.png",
    "32": "/images/kabu32.png",
    "48": "/images/kabu48.png",
    "128": "/images/kabu128.png",
    "256": "/images/kabu256.png"
  },
  "author": {
    "name": "www.harurow",
    "url": "https://zenn.dev/harurow/"
  },
  "permissions": [
    "tabs",
    "contextMenus",
    "storage"
  ],
  "options_page": "options.html",
  "action": {
    "default_title": "__MSG_app_title__",
    "default_icon": {
      "16": "/images/kabu16.png",
      "24": "/images/kabu24.png",
      "32": "/images/kabu32.png"
    }
  },
  "background": {
    "service_worker": "service_worker.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.rakuten-sec.co.jp/*"
      ],
      "css": [
        "style.css"
      ],
      "js": [
        "third-party/jquery.min.js",
        "urls.js",
        "linkMenu.js",
        "rakuten-cs.js"
      ]
    },
    {
      "matches": [
        "https://hs.trkd-asia.com/rakutensecscr/*"
      ],
      "all_frames": true,
      "css": [
        "style.css"
      ],
      "js": [
        "third-party/jquery.min.js",
        "urls.js",
        "linkMenu.js",
        "rakuten-scr-cs.js"
      ]
    },
    {
      "matches": [
        "https://*.sbisec.co.jp/ETGate/*",
        "https://*.sbi.ifis.co.jp/*"
      ],
      "css": [
        "style.css"
      ],
      "js": [
        "third-party/jquery.min.js",
        "urls.js",
        "linkMenu.js",
        "sbi-cs.js"
      ]
    },
    {
      "matches": [
        "https://graph.sbisec.co.jp/sbiscreener/*"
      ],
      "all_frames": true,
      "css": [
        "style.css"
      ],
      "js": [
        "third-party/jquery.min.js",
        "urls.js",
        "linkMenu.js",
        "sbi-scr-cs.js"
      ]
    },
    {
      "matches": [
        "https://jp.tradingview.com/*"
      ],
      "css": [
        "tradingview-cs.css"
      ],
      "js": [
        "third-party/jquery.min.js",
        "urls.js",
        "tradingview-cs.js"
      ]
    }
  ]
}