Merge branch 'master' of https://github.com/ajayyy/SponsorBlock into improvements

This commit is contained in:
Ajay Ramachandran 2021-07-02 21:21:25 -04:00
commit 0dd2d18b07
3 changed files with 9 additions and 1 deletions

View file

@ -19,7 +19,7 @@
<p class="createdBy">Created By <a href="https://ajay.app">Ajay Ramachandran</a> <img src="https://ajay.app/newprofilepic.jpg" height="30" class="profilepiccircle"/></p>
<p>
Thanks for installing SponsorBlock. Here are some quick tips for getting started. Feel free to contact me if you have any questions. By using this extension, you agree to the <a href="https://gist.github.com/ajayyy/aa9f8ded2b573d4f73a3ffa0ef74f796">Privacy Policy</a>.
Thanks for installing SponsorBlock. Here are some quick tips for getting started. Feel free to contact me if you have any questions. By using this extension, you agree to the <a href="https://gist.github.com/ajayyy/aa9f8ded2b573d4f73a3ffa0ef74f796">Privacy Policy</a> and <a href="https://gist.github.com/ajayyy/9e8100f069348e0bc062641f34d6af12">Terms of Use</a>.
</p>
<p class="projectPreview">

View file

@ -66,6 +66,12 @@ body {
display: inline-block;
}
#options.embed {
max-width: 100%;
text-align: left;
display: inline-block;
}
.switch-container {
content: attr(label-name);
position: absolute;

View file

@ -18,6 +18,8 @@ async function init() {
for (const element of document.getElementsByClassName("titleBar")) {
element.classList.add("hidden");
}
document.getElementById("options").classList.add("embed");
}
if (!Config.configListeners.includes(optionsConfigUpdateListener)) {