Skip to content

Commit

Permalink
remove bad background hue which is annoying
Browse files Browse the repository at this point in the history
  • Loading branch information
Dreamlinerm committed Oct 8, 2024
1 parent d1b5dae commit a62d9f6
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
7 changes: 4 additions & 3 deletions firefox/popup/settings.html
Original file line number Diff line number Diff line change
Expand Up @@ -717,9 +717,10 @@ <h2>Changelog</h2>
<div class="line flex">
<h2>1.1.38</h2>
<ul>
<li>Better mobile layout</li>
<li>Do not filter premiers not in queue on cr calendar</li>
<li>Filter Japanese Audio in Dub also on cr calendar</li>
<li>Better mobile Popup layout</li>
<li>Crunchyroll: Do not filter premiers not in queue on calendar</li>
<li>Crunchyroll: Filter Japanese Audio in Dub also on calendar</li>
<li>Amazon: Remove background hue on pause again</li>
</ul>
</div>
<div class="line flex">
Expand Down
7 changes: 7 additions & 0 deletions firefox/skipper.js
Original file line number Diff line number Diff line change
Expand Up @@ -1089,6 +1089,13 @@ if (isPrimeVideo || isNetflix || isDisney || isHotstar || isCrunchyroll || isHBO
}
async function Amazon_xray() {
document.querySelector(".xrayQuickViewList")?.remove();
// remove bad background hue which is annoying
let b = document.querySelector(".fkpovp9.f8hspre:not(.enhanced)");
if (b) {
b.classList.add("enhanced");
b.style.backgroundColor = "transparent";
b.style.background = "transparent";
}
}

async function Amazon_doubleClick() {
Expand Down

0 comments on commit a62d9f6

Please sign in to comment.