Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
BBB Volume Slider - Userscript
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Daniel Müller
BBB Volume Slider - Userscript
Merge requests
!1
fix for new BBB and Add Automatic Updates
Code
Review changes
Check out branch
Download
Patches
Plain diff
Open
fix for new BBB and Add Automatic Updates
stlestoec/bbb-volume-slider-userscript:master
into
master
Overview
0
Commits
4
Pipelines
0
Changes
1
Open
Leon Stöckbauer
requested to merge
stlestoec/bbb-volume-slider-userscript:master
into
master
1 year ago
Overview
0
Commits
4
Pipelines
0
Changes
1
Expand
Changes:
Match Adjustments: modified to be compatible with the new .cloud URL
Added Update and Download URLs: Users will now be automatically prompted if a new version is available
Updated CSS Selector: The CSS selector has been replaced to identify the "Top Right Container" element.
Edited
1 year ago
by
Leon Stöckbauer
0
0
Merge request reports
Compare
master
master (HEAD)
and
latest version
latest version
c6f1a7ce
4 commits,
1 year ago
1 file
+
5
−
2
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
bbb-volume-slider.user.js
+
5
−
2
Options
// ==UserScript==
// ==UserScript==
// @name BBB Volume Slider
// @name BBB Volume Slider
// @website https://code.fbi.h-da.de/istddmue2/bbb-volume-slider-userscript
// @website https://code.fbi.h-da.de/istddmue2/bbb-volume-slider-userscript
// @version 0.
2
// @version 0.
3
// @description Adds a volume slider
// @description Adds a volume slider
// @author Daniel Müller
// @author Daniel Müller
// @match https://*.h-da.de/html5client/join*
// @match https://*.h-da.de/html5client/join*
// @match https://*.h-da.cloud/html5client/join*
// @updateURL https://code.fbi.h-da.de/istddmue2/bbb-volume-slider-userscript/-/raw/master/bbb-volume-slider.user.js
// @downloadURL https://code.fbi.h-da.de/istddmue2/bbb-volume-slider-userscript/-/raw/master/bbb-volume-slider.user.js
// @grant none
// @grant none
// ==/UserScript==
// ==/UserScript==
@@ -13,7 +16,7 @@ async function sleep(ms) {
@@ -13,7 +16,7 @@ async function sleep(ms) {
}
}
function
getTopRightContainer
()
{
function
getTopRightContainer
()
{
return
document
.
querySelector
(
"
div[class^=top] div[class^=right]
"
);
return
document
.
querySelector
(
"
.sc-jLVpRp.eRnBWT
"
);
}
}
function
remoteMedia
()
{
function
remoteMedia
()
{
Loading