TwitCasting Comment Cleaner

TwitCasting Comment Cleaner

A plugin for deleting comments at TwitCasting

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",
  "name": "__MSG_extName__",
  "version": "1.1.0",
  "description": "__MSG_extDescription__",
  "author": "Kikyou Akino",
  "homepage_url": "http://bellflower.web4u.jp/",
  "permissions": [
    "activeTab",
    "scripting"
  ],
  "host_permissions": [
    "*://*.twitcasting.tv/*",
    "*://twitcasting.tv/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.twitcasting.tv/*",
        "*://twitcasting.tv/*"
      ],
      "js": [
        "jquery-3.7.1.slim.min.js",
        "script.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": "icon.png"
  },
  "icons": {
    "128": "icon.png"
  }
}