mirror of
https://github.com/ajayyy/SponsorBlock.git
synced 2024-11-10 09:07:45 +01:00
Added Firefox fixes
This commit is contained in:
parent
aba08a515e
commit
b0e0c380dd
3 changed files with 9 additions and 3 deletions
|
@ -69,6 +69,9 @@
|
||||||
"128": "icons/LogoSponsorBlocker128px.png",
|
"128": "icons/LogoSponsorBlocker128px.png",
|
||||||
"256": "icons/LogoSponsorBlocker256px.png"
|
"256": "icons/LogoSponsorBlocker256px.png"
|
||||||
},
|
},
|
||||||
"options_page": "options/options.html",
|
"options_ui": {
|
||||||
|
"page": "options/options.html",
|
||||||
|
"open_in_tab": true
|
||||||
|
},
|
||||||
"manifest_version": 2
|
"manifest_version": 2
|
||||||
}
|
}
|
||||||
|
|
|
@ -42,7 +42,7 @@ body {
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
|
|
||||||
width: fit-content;
|
width: max-content;
|
||||||
}
|
}
|
||||||
|
|
||||||
.option-button:hover {
|
.option-button:hover {
|
||||||
|
|
|
@ -64,7 +64,10 @@ async function init() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Don't wait on chrome
|
||||||
|
if (typeof(browser) == "undefined") {
|
||||||
await wait(() => checksLeft == 0, 1000, 50);
|
await wait(() => checksLeft == 0, 1000, 50);
|
||||||
|
}
|
||||||
|
|
||||||
optionsContainer.classList.remove("hidden");
|
optionsContainer.classList.remove("hidden");
|
||||||
optionsContainer.classList.add("animated");
|
optionsContainer.classList.add("animated");
|
||||||
|
|
Loading…
Reference in a new issue