BRiSX

BRiSX

株クラなら知らない人はいない(!?)ブラウザベースの高速株式取引WEBアプリBRiSK、BRiSK Nextの拡張機能です。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "0.1.22",
  "name": "BRiSX",
  "description": "株クラなら知らない人はいない(!?)ブラウザベースの高速株式取引WEBアプリBRiSK、BRiSK Nextの拡張機能です。",
  "action": {
    "default_icon": {
      "16": "icon_16.png",
      "32": "icon_32.png"
    }
  },
  "icons": {
    "16": "icon_16.png",
    "32": "icon_32.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.brisk.jp/*"
      ],
      "js": [
        "entry.js"
      ]
    }
  ],
  "options_page": "options.html",
  "web_accessible_resources": [
    {
      "matches": [
        "*://*.brisk.jp/*"
      ],
      "resources": [
        "runtime.js",
        "runtime_next.js",
        "gtag.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ruleset_1",
        "enabled": true,
        "path": "rules.json"
      }
    ]
  },
  "permissions": [
    "declarativeNetRequest",
    "storage"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}