同步 YouTube 至 Discord

同步 YouTube 至 Discord

透過神奇蹦蹦的超級魔法讓你在 Chrome 上的 YouTube 播放狀態同步到 Discord 讓大家知道你正在觀看什麼內容!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "default_locale": "zh_TW",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "icons": {
    "128": "icon.png"
  },
  "version": "1.0.1",
  "author": "YamiOdymel",
  "minimum_chrome_version": "41",
  "permissions": [
    "storage"
  ],
  "browser_action": {
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://discord.com/channels/*",
        "https://ptb.discord.com/channels/*",
        "https://canary.discord.com/channels/*"
      ],
      "js": [
        "discord.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "js": [
        "youtube.js"
      ],
      "run_at": "document_idle"
    }
  ]
}