Item View for Tiwtcasting

Item View for Tiwtcasting

Provides a mean of tracking gift items received during a Twitcasting live broadcast.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "default_locale": "ja",
  "version": "0.6.0",
  "name": "__MSG_extName__",
  "description": "__MSG_extDesc__",
  "author": "tw: @kii_memo_jp",
  "permissions": [
    "activeTab",
    "storage",
    "scripting"
  ],
  "host_permissions": [
    "https://*.twitcasting.tv/*/broadcastertool"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "action": {
    "default_icon": {
      "16": "tea-X_16.png",
      "32": "tea-X_32.png",
      "48": "tea-X_48.png",
      "128": "tea-X_128.png"
    },
    "default_title": "__MSG_extName__"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.twitcasting.tv/*/broadcastertool"
      ],
      "run_at": "document_idle",
      "js": [
        "contentScript.js",
        "itmView.js"
      ],
      "css": [
        "custom.css"
      ]
    }
  ],
  "icons": {
    "16": "tea-X_16.png",
    "32": "tea-X_32.png",
    "48": "tea-X_48.png",
    "128": "tea-X_128.png"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+F",
        "mac": "MacCtrl+Shift+F"
      },
      "description": "__MSG_extCmdDesc__"
    }
  }
}