mirror of
https://github.com/chylex/Transparent-Twitch-Chat.git
synced 2025-05-09 16:34:03 +02:00
Add option to change video player position
This commit is contained in:
parent
1a5b930309
commit
a190f2ae7c
18
src/main.js
18
src/main.js
@ -18,6 +18,7 @@ const settings = {
|
||||
|
||||
chatWidth: 350,
|
||||
chatFilters: "",
|
||||
playerPosition: "center center",
|
||||
grayTheme: false,
|
||||
|
||||
hideHeader: true,
|
||||
@ -107,6 +108,12 @@ ${isFirefox ? `@#css{{
|
||||
|
||||
@#css{{
|
||||
|
||||
// general player styles
|
||||
|
||||
${isTheatre} .video-player video {
|
||||
object-position: ${settings.playerPosition} !important;
|
||||
}
|
||||
|
||||
// general chat styles
|
||||
|
||||
${rcolBlur} .channel-root__right-column${wa} {
|
||||
@ -793,6 +800,17 @@ function createSettingsModal(){
|
||||
<p>General</p>
|
||||
${generateSlider("Chat Width", "chatWidth", { min: 250, max: 600, step: 25, wait: 500, text: "px" })}
|
||||
${generateTxtbox("Chat Filters", "chatFilters", { wait: 500, placeholder: "Example: kappa, *abc*" })}
|
||||
${generateSelect("Player Position", "playerPosition", {
|
||||
"top left": "Top Left",
|
||||
"top center": "Top Center",
|
||||
"top right": "Top Right",
|
||||
"center left": "Center Left",
|
||||
"center center": "Center",
|
||||
"center right": "Center Right",
|
||||
"bottom left": "Bottom Left",
|
||||
"bottom center": "Bottom Center",
|
||||
"bottom right": "Bottom Right"
|
||||
})}
|
||||
${generateToggle("Gray Theme", "grayTheme")}
|
||||
</div>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user