SHOWROOM トイすこツール

SHOWROOM トイすこツール

SHOWROOMすこすこツール+には実装しなかった、細かい機能を詰め込んだ拡張機能です。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "SHOWROOM トイすこツール",
  "short_name": "トイすこ",
  "description": "SHOWROOMすこすこツール+には実装しなかった、細かい機能を詰め込んだ拡張機能です。",
  "version": "2.1.2",
  "permissions": [
    "https://www.showroom-live.com/*",
    "tabs",
    "background",
    "contextMenus",
    "storage"
  ],
  "host_permissions": [
    "https://www.showroom-live.com/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*"
      ],
      "matches": [
        "https://www.showroom-live.com/*"
      ]
    }
  ],
  "background": {
    "service_worker": "js/background.js",
    "type": "module"
  },
  "icons": {
    "16": "img/icon.png",
    "48": "img/icon.png",
    "128": "img/icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.showroom-live.com/r/*"
      ],
      "run_at": "document_start",
      "css": [
        "css/jquery-ui.css",
        "css/live_room_toysuko.css"
      ]
    },
    {
      "matches": [
        "https://www.showroom-live.com/r/*"
      ],
      "run_at": "document_end",
      "all_frames": true,
      "js": [
        "js/jquery-3.2.1.min.js",
        "js/live_room_toysuko_A.js"
      ]
    }
  ],
  "action": {
    "default_icon": "img/icon.png",
    "default_title": "オプション - SHOWROOM トイすこツール",
    "default_popup": "option.html"
  }
}