VRChatのワールド管理をサポートするやつ

VRChatのワールド管理をサポートするやつ

テキスト選択時の右クリックメニューにVRChatで検索する機能や、お気に入りワールドをエクスポートする機能などを追加します。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "VRChatのワールド管理をサポートするやつ",
  "version": "1.3.1",
  "manifest_version": 2,
  "description": "テキスト選択時の右クリックメニューにVRChatで検索する機能や、お気に入りワールドをエクスポートする機能などを追加します。",
  "content_scripts": [
    {
      "matches": [
        "https://vrchat.com/home/*"
      ],
      "js": [
        "js/app.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "js/context.js"
    ]
  },
  "homepage_url": "https://twitter.com/harezora_lueur",
  "icons": {
    "16": "icon/16.png",
    "48": "icon/48.png",
    "128": "icon/128.png"
  },
  "permissions": [
    "https://vrchat.com/home/*",
    "contextMenus"
  ]
}