東カレデートChrome拡張検索

東カレデートChrome拡張検索

東カレデートで趣味や価値観、共通点からキーワード検索(フリーワード検索)できる「東カレデートChrome拡張検索機能」です。 ゴールド・新着NEW・アクティブ、オンライン女性メンバーだけを絞り込んで表示することも可能です。…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "東カレデートChrome拡張検索",
  "manifest_version": 3,
  "version": "0.2",
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "activeTab",
    "scripting"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://tokyo-calendar-date.jp/*"
      ],
      "js": [
        "base.js",
        "content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "t_calendar_user_seacher.js",
        "scroll_top.js",
        "scroll_bottom.js",
        "keyword_clear.js",
        "auto_load.js",
        "content.js"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    }
  ],
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "windows": "Ctrl+Shift+0",
        "mac": "Command+E",
        "chromeos": "Ctrl+Shift+0",
        "linux": "Ctrl+Shift+0"
      }
    }
  },
  "action": {
    "default_title": "東カレデートChrome拡張検索",
    "default_popup": "popup.html"
  }
}