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": "6.1.4",
  "permissions": [
    "notifications",
    "tabs",
    "background",
    "declarativeNetRequest",
    "storage"
  ],
  "host_permissions": [
    "https://www.showroom-live.com/*"
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "all_block",
        "enabled": true,
        "path": "rule/all_block.json"
      }
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "*"
      ],
      "matches": [
        "https://www.showroom-live.com/*"
      ]
    }
  ],
  "icons": {
    "16": "img/icon.png",
    "48": "img/icon.png",
    "128": "img/icon.png"
  },
  "background": {
    "service_worker": "js/background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.showroom-live.com/r/*"
      ],
      "run_at": "document_start",
      "css": [
        "css/jquery-ui.css",
        "css/live_room.css"
      ]
    },
    {
      "matches": [
        "https://www.showroom-live.com/r/*"
      ],
      "run_at": "document_end",
      "all_frames": true,
      "js": [
        "js/jquery-3.6.1.min.js",
        "js/jquery-ui.min.js",
        "js/live_room_A.js"
      ]
    },
    {
      "matches": [
        "https://www.showroom-live.com/onlive"
      ],
      "run_at": "document_end",
      "all_frames": true,
      "js": [
        "js/jquery-3.6.1.min.js",
        "js/jquery-ui.min.js",
        "js/onlive_A.js"
      ]
    },
    {
      "matches": [
        "https://www.showroom-live.com/onlive"
      ],
      "run_at": "document_start",
      "css": [
        "css/jquery-ui.css",
        "css/onlive.css"
      ]
    }
  ]
}