Scepter

Scepter

King of Time に様々な機能を追加します

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Scepter",
  "description": "King of Time に様々な機能を追加します",
  "version": "0.0.26",
  "icons": {
    "128": "icon-128.png"
  },
  "permissions": [
    "alarms",
    "notifications",
    "storage",
    "tabs",
    "unlimitedStorage"
  ],
  "host_permissions": [
    "https://*.slack.com/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://s2.ta.kingoftime.jp/independent/recorder2/personal/*"
      ],
      "js": [
        "recorder.js"
      ],
      "css": [
        "recorder.css"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://s2.ta.kingoftime.jp/independent/recorder2/personal/*"
      ],
      "world": "MAIN",
      "js": [
        "realworld.js"
      ],
      "injectImmediately": true
    },
    {
      "matches": [
        "https://s2.ta.kingoftime.jp/admin/*"
      ],
      "js": [
        "admin.js"
      ],
      "css": [
        "admin.css"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "icon-16.png",
        "icon-128.png"
      ],
      "matches": [
        "https://s2.ta.kingoftime.jp/*"
      ]
    }
  ],
  "action": {
    "default_popup": "popup.html"
  }
}