MyレコーダーChromeアシスタント

MyレコーダーChromeアシスタント

勤怠管理システム「Myレコーダー | KING OF TIME」を快適に使えるようにするための拡張機能です。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "MyレコーダーChromeアシスタント",
  "short_name": "Myレコーダーアシスト",
  "version": "0.9.2",
  "manifest_version": 3,
  "description": "勤怠管理システム「Myレコーダー | KING OF TIME」を快適に使えるようにするための拡張機能です。",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "options_ui": {
    "page": "src/options/options.html",
    "open_in_tab": true
  },
  "action": {
    "default_icon": "icons/icon19.png",
    "default_title": "Myレコーダーアシスタント",
    "default_popup": "src/browser_action/browser_action.html"
  },
  "permissions": [
    "storage",
    "declarativeNetRequest",
    "declarativeNetRequestFeedback"
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "modify_headers",
        "enabled": true,
        "path": "modify_headers.json"
      }
    ]
  },
  "host_permissions": [
    "https://s2.ta.kingoftime.jp/independent/recorder/personal/*",
    "https://s3.ta.kingoftime.jp/independent/recorder/personal/*",
    "https://s2.ta.kingoftime.jp/independent/recorder2/personal/*",
    "https://s3.ta.kingoftime.jp/independent/recorder2/personal/*",
    "https://slack.com/api/*",
    "https://hooks.slack.com/services/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://s2.ta.kingoftime.jp/independent/recorder/personal/*",
        "https://s3.ta.kingoftime.jp/independent/recorder/personal/*",
        "https://s2.ta.kingoftime.jp/independent/recorder2/personal/*",
        "https://s3.ta.kingoftime.jp/independent/recorder2/personal/*"
      ],
      "js": [
        "src/inject/inject.js"
      ],
      "all_frames": true
    }
  ],
  "background": {
    "service_worker": "src/background/background.js"
  }
}