2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

【OBS Studio】ブラウザソースでDiscordを開いたとき、ビデオ通話画面の背景を透明にするCSS

Last updated at Posted at 2021-09-09

ブラウザソースでhttps://discord.com/appを開く。

CSSはこちら

body,
[class*=app],
[class*=bg],
[class*=chat],
[class*=callContainer],
[class*=fullScreen],
[class*=uploadArea],
[class*=gradient],
[class*=indicators] {
    background: none !important;
}

[class*=overlay],
[class*=border],
[class*=notice],
[class*=art],
[class*=art]+[class*=header] {
    display: none !important;
}

追加した後、「対話」ボタンで操作していく
QRコードでログインすればログインできる。

別のデバイスで通話に参加してから、そのアカウントでログインすると良い。

※追記
しゃべってない時に影を取得したいときのCSS
緑のクロマキーで抜きます。

body,
#app-mount,
[class*=app],
[class*=bg],
[class*=background],
[class*=chat] {
    background: #000 !important;
}

div[class*=sidebar],
div[class*=overlay],
[class*=bg],
nav[class*=guilds],
[class*=indicators],
[class*=gradient] {
    display: none !important;
}

div[class*=speaking] {
    background-color: #0F0;
}
2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?